Almost every time I use the manage.py shell in Django, I want to have certain things imported. I want to import * from my models.py module, for instance. Currently, my work around is to put all the imports in a file named s.py, and then after I fire up the shell I type execfile('s.py').Almost every time I use the manage.py shell in