def setUp(self): db.drop_all() db.create_all()
def main(): db.create_all() app.run(debug=True) return 0