Django settings are already loaded.


In [4]:
from poll.models import Poll

In [14]:
Poll.objects.all()


Out[14]:
[<Poll: Poll object>, <Poll: Poll object>]

In [16]:
for poll in Poll.objects.all():
    print poll.title


What is your favorite python web framework?
Is it going to rain?