- Author:
- sheats
- Posted:
- January 9, 2008
- Language:
- Python
- Version:
- .96
- Tags:
- import shell interpreter autoload
- Score:
- 7 (after 9 ratings)
It's a pain to import all the Django models you want to use in the Python shell every time you start it. Here's how you can get IPython to autoload all your Django models for you every time you start the shell using ./manage.py shell.
Put the code in a .py file in the root of your project. Then tell IPython to load the script in ~/.ipython/ipythonrc in the "Python files to load and execute" section.
1 2 3 | from django.db.models.loading import get_models
for m in get_models():
exec "from %s import %s" % (m.__module__, m.__name__)
|
Comments
I've been dying for a solution to this, thanks!
#
Please login first before commenting.