本文整理汇总了Python中models.point.Point.create_table方法的典型用法代码示例。如果您正苦于以下问题:Python Point.create_table方法的具体用法?Python Point.create_table怎么用?Python Point.create_table使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.point.Point
的用法示例。
在下文中一共展示了Point.create_table方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: print
# 需要导入模块: from models.point import Point [as 别名]
# 或者: from models.point.Point import create_table [as 别名]
except ImportError:
print('DB Error.')
exit(1)
# Connecting to database
db_hook = db_module.DBModule(options.database, options.username, options.password)
# Loading models
pv_hook = PV(db_hook)
point_hook = Point(db_hook)
proposition_hook = Proposition(db_hook)
participant_hook = Participant(db_hook)
# Building tables
pv_hook.create_table()
point_hook.create_table()
proposition_hook.create_table()
participant_hook.create_table()
def setup_routes(obj):
for kw in dir(obj):
attr = getattr(obj, kw)
if hasattr(attr, 'route'):
if hasattr(attr, 'method'):
print('routing ' + str(attr) + ' with ' + attr.route + ', ' + attr.method)
bottle.route(attr.route, attr.method)(attr)
else:
bottle.route(attr.route)(attr)
# Loading controllers
pv_controller = PV_Controller(db_hook)