Alternate method of autoloading Django models in ipython

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
def load_django_models():
    try:
        from django.db.models.loading import get_models
        for m in get_models():
            ip.ex("from %s import %s" % (m.__module__, m.__name__))
    except ImportError:
        print "INFO: could not find a django env"

...

def main():
    ...
    load_django_models()

More like this

  1. Autoload Django Models When Using ./manage.py shell by sheats 4 years, 4 months ago
  2. Use django-admin.py instead of manage.py by whiteinge 3 years, 11 months ago
  3. cron/console bootstrap django by nstrite 4 years, 9 months ago
  4. PyCrust Shell by robvdl 4 years, 7 months ago
  5. Facebook shell by stephenemslie 2 years, 8 months ago

Comments

jpt (on January 16, 2008):

great snippet, I use ipython for other things (virtually everything actually) so I changed the code to

def load_django_models():
    try:
        from django.db.models.loading import get_models
        for m in get_models():
            ip.ex("from %s import %s" % (m.__module__, m.__name__))
        print 'INFO: Loaded Django models.'
    except ImportError:
        pass

but other than that, terrific

#

chrisyoung (on June 15, 2009):

If you're using a virtualenv and ipython is having trouble finding your project settings, I found that adding this to the snippet helped:

os.environ["DJANGO_SETTINGS_MODULE"] = "settings"

#

(Forgotten your password?)