from sqlobject import * sqlhub.processConnection = connectionForURI('sqlite:db.sqlite3') class Subscriber(SQLObject): user_id = StringCol(length=32) Subscriber.createTable(ifNotExists=True)