In django is there way to import all modules

   ex: from project.models import *
   ex: from project1.models import *

Can this be done with one statement

link|improve this question

76% accept rate
1  
Why do you want to do this? – Dominic Rodger Aug 16 '10 at 12:50
When testing the code if there is a need of importing three or 4 modules into python prompt this would come in handy.. – Hulk Aug 16 '10 at 12:53
feedback

1 Answer

up vote 2 down vote accepted

If you just want to do this when testing things in the shell, look into the shell_plus command provided by the django-extensions project.

This is a really neat extension, which starts a shell and automatically loads all the models in your project when you do ./manage.py shell_plus from the command line.

link|improve this answer
+1 - Also, you might find the way they load all models instructive (see github.com/django-extensions/django-extensions/blob/master/…) – Dominic Rodger Aug 16 '10 at 13:09
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.