Created
February 21, 2015 21:48
-
-
Save un1t/56df90961081857650ce to your computer and use it in GitHub Desktop.
How to run scripts outside django
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding: utf-8 | |
import os | |
import django | |
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "project.settings") | |
django.setup() | |
# write your code here |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
For anyone who's trying to use the above mentioned @nurettin you need to install django-extensions.
Further info : https://django-extensions.readthedocs.io/