peewee 2.2.1

peewee - fiddling around with an ORM.model definitions and schema creationsmells like django:import peeweeclass Blog(peewee.Model): title = peewee.CharField() def __unicode__(self): return self.titleclass Entry(peewee.Model): title =...