from peewee import Model, CharField, TextField, PostgresqlDatabase import config db = PostgresqlDatabase(config.DB, host=config.DB_HOST, port=config.DB_PORT, user=config.DB_USER, password=config.DB_PASS, autocommit=True, autorollback=True) class Page(Model): """ Page of a website """ url = CharField() title = CharField(null=True) content = TextField(null=True) class Meta: database = db