tubearchivist/tubearchivist/manage.py

24 lines
708 B
Python
Raw Permalink Normal View History

2021-09-05 17:10:14 +00:00
#!/usr/bin/env python
"""Django's command-line utility for administrative tasks."""
import os
import sys
def main():
2021-09-18 13:02:54 +00:00
# pylint: disable=import-outside-toplevel
2021-09-05 17:10:14 +00:00
"""Run administrative tasks."""
2021-09-21 09:25:22 +00:00
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "config.settings")
2021-09-05 17:10:14 +00:00
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)
2021-09-21 09:25:22 +00:00
if __name__ == "__main__":
2021-09-05 17:10:14 +00:00
main()