本文整理汇总了Python中api_li3ds.database.Database.init_app方法的典型用法代码示例。如果您正苦于以下问题:Python Database.init_app方法的具体用法?Python Database.init_app怎么用?Python Database.init_app使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类api_li3ds.database.Database
的用法示例。
在下文中一共展示了Database.init_app方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: create_app
# 需要导入模块: from api_li3ds.database import Database [as 别名]
# 或者: from api_li3ds.database.Database import init_app [as 别名]
def create_app():
"""
Creates application.
:returns: flask application instance
"""
app = Flask(__name__)
cfgfile = os.environ.get('API_LI3DS_SETTINGS')
if cfgfile:
app.config.update(load_yaml_config(cfgfile))
else:
try:
cfgfile = (Path(__file__).parent.parent / 'conf' / 'api_li3ds.yml').resolve()
except FileNotFoundError:
print(Path(__file__).parent.parent / 'conf' / 'api_li3ds.yml')
app.logger.warning('no config file found !!')
sys.exit(1)
app.config.update(load_yaml_config(str(cfgfile)))
# setting log level
if app.config['DEBUG']:
app.logger.setLevel(LOG_LEVELS['debug'])
else:
app.logger.setLevel(LOG_LEVELS['info'])
app.logger.debug('loading config from {}'.format(cfgfile))
if 'HEADER_API_KEY' not in app.config:
app.logger.fatal('HEADER_API_KEY missing')
sys.exit(1)
if not app.config['HEADER_API_KEY'] or len(app.config['HEADER_API_KEY']) < 12:
app.logger.fatal('HEADER_API_KEY cannot be empty or '
'too short (at least 12 characters)')
sys.exit(1)
# load extensions
# be carefull to load apis before blueprint !
init_apis()
api.init_app(app)
Database.init_app(app)
return app