I am trying to execute an external snippet for debugging and terminal-like purposes in the environment the Django console uses so it can connect to the db, etc.
Basically, I am just using it for the same reason one would fiddle with the console but I am using longer snippets to output some formatted information so it is handy to have that code in an actual file manipulated with an IDE.
An answer said you could do that by executing python manage.py shell < snippet.py
but I did not see a successfull result. And although no errors are reported, I am not getting the excepted output, but only a series of >>>
prompts.
So how can I do this?
By the way, I am using PyCharm, in case this IDE has a shorthand way of doing this or any special tool.
If its just a one off script,
You need to have your environmental variable set up, so its easiest to run it from the IDE (make it part of the same project, right click on teh file and there should be a run option).
If you are looking for something to run on a production environment I would create a management command as suggested by DanEEStar.
Many times you need scripts to play with db or more. But you need to the the django way i.e. the ORM and play with every thing that your project has.
You can checkout https://github.com/django-extensions/django-extensions
You create a scripts folder in your project home and write down a method run . the app provide you a way to run those scripts easily. How to do it.
Step 1 - Install the package. Step 2 - Create a scripts folder with init.py in project root, and add 'django_extensions' in your applications Step 3- Create a file send_email_to_users.py in scripts folder. Simple Example.
Now from command line you can run
I would say creating a new Custom management command is the best way to achieve this goal.
But you can run your script in a django environment. I use this sometimes to run a oneoff script or some simple tests.
You have to set the environment variable
DJANGO_SETTINGS_MODULE
to your settings module and then you have to calldjango.setup()
I copied these lines from the
manage.py
script, you have to set the correct settings module!Here is a simple template script which I use sometimes:
It is important to note that all project imports must be placed after calling
django.setup()
.