Django Setup from Shell

Django uses a number of settings typically defined in the settings module within a project. These can be loaded into the interactive python shell for extra interactive fun.

from django.core.management import setup_environ
from myapp import settings
setup_environ(settings)

,