本文整理汇总了Python中api.app.create_app方法的典型用法代码示例。如果您正苦于以下问题:Python app.create_app方法的具体用法?Python app.create_app怎么用?Python app.create_app使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类api.app
的用法示例。
在下文中一共展示了app.create_app方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: createdb
# 需要导入模块: from api import app [as 别名]
# 或者: from api.app import create_app [as 别名]
def createdb(testdata=False):
app = create_app()
with app.app_context():
db.drop_all()
db.create_all()
if testdata:
classes = ['Algebra', 'Literature', 'Chemistry', 'Spanish',
'Game Development', 'History', 'Music', 'Psychology',
'Science', 'Photography', 'Drama', 'Business',
'Python Programming']
for name in classes:
c = Class(name=name)
db.session.add(c)
u = User(username='miguel', password='python')
db.session.add(u)
db.session.commit()
示例2: createdb
# 需要导入模块: from api import app [as 别名]
# 或者: from api.app import create_app [as 别名]
def createdb():
app = create_app()
with app.app_context():
db.drop_all()
db.create_all()
示例3: setUp
# 需要导入模块: from api import app [as 别名]
# 或者: from api.app import create_app [as 别名]
def setUp(self):
self.app = create_app('test_config')
self.ctx = self.app.app_context()
self.ctx.push()
db.drop_all()
db.create_all()
u = User(username=self.default_username,
password=self.default_password)
db.session.add(u)
db.session.commit()
self.client = TestClient(self.app, u.generate_auth_token(), '')
示例4: app
# 需要导入模块: from api import app [as 别名]
# 或者: from api.app import create_app [as 别名]
def app():
app = create_app(config_object=TestingConfig)
with app.app_context():
yield app
示例5: app
# 需要导入模块: from api import app [as 别名]
# 或者: from api.app import create_app [as 别名]
def app():
"""Create application for the tests."""
_app = create_app("tests.settings")
_app.config['SECRET_KEY'] = CMDBTestClient.TEST_APP_SECRET
_app.test_client_class = CMDBTestClient
_app.response_class = CMDBTestResponse
ctx = _app.test_request_context()
ctx.push()
yield _app
ctx.pop()
示例6: setUp
# 需要导入模块: from api import app [as 别名]
# 或者: from api.app import create_app [as 别名]
def setUp(self):
self.app = create_app('test_config')
self.ctx = self.app.app_context()
self.ctx.push()
db.drop_all()
db.create_all()
u = User(username=self.default_username,
password=self.default_password)
db.session.add(u)
db.session.commit()
self.client = TestClient(self.app, u.generate_auth_token(), '')
self.catalog = self._get_catalog()