The tutorial on the django website shows this code for the models:
from django.db import models class Poll(models.Model): question = models.CharField(ma
It's done with metaclasses - very clever stuff. I'd recommend Marty Alchin's excellent book Pro Django if you want to learn more.