当前位置: 首页>>代码示例>>Python>>正文


Python app.create_app方法代码示例

本文整理汇总了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() 
开发者ID:miguelgrinberg,项目名称:api-pycon2015,代码行数:20,代码来源:manage.py

示例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() 
开发者ID:miguelgrinberg,项目名称:api-pycon2014,代码行数:7,代码来源:manage.py

示例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(), '') 
开发者ID:miguelgrinberg,项目名称:api-pycon2014,代码行数:13,代码来源:test_api.py

示例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 
开发者ID:trainindata,项目名称:deploying-machine-learning-models,代码行数:7,代码来源:conftest.py

示例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() 
开发者ID:pycook,项目名称:cmdb,代码行数:14,代码来源:conftest.py

示例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() 
开发者ID:miguelgrinberg,项目名称:api-pycon2015,代码行数:14,代码来源:test_api.py


注:本文中的api.app.create_app方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。