64 Star 415 Fork 212

纳兰秋水 / AnsibleUI

Create your Gitee Account
Explore and code with more than 12 million developers,Free private repositories !:)
Sign up
Clone or Download
manage.py 885 Bytes
Copy Edit Raw Blame History
纳兰秋水 authored 2019-10-21 10:52 . 1021
#!/usr/bin/env python
"""Django's command-line utility for administrative tasks."""
import os
import sys
def main():
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'ansible_ui.settings')
try:
from django.core.management import execute_from_command_line
except ImportError as exc:
raise ImportError(
"Couldn't import Django. Are you sure it's installed and "
"available on your PYTHONPATH environment variable? Did you "
"forget to activate a virtual environment?"
) from exc
execute_from_command_line(sys.argv)
if __name__ == '__main__':
print('''
_ _ _ _ _ _ ___
/ \ _ __ ___(_) |__ | | ___ | | | |_ _|
/ _ \ | '_ \/ __| | '_ \| |/ _ \ | | | || |
/ ___ \| | | \__ \ | |_) | | __/ | |_| || |
/_/ \_\_| |_|___/_|_.__/|_|\___| \___/|___|
''')
main()
Python
1
https://gitee.com/lwr_dgas/AnsibleUI.git
git@gitee.com:lwr_dgas/AnsibleUI.git
lwr_dgas
AnsibleUI
AnsibleUI
master

Search