Python flask.ext.script 模块,Shell() 实例源码

我们从Python开源项目中,提取了以下3个代码示例,用于说明如何使用flask.ext.script.Shell()

项目:flask    作者:ljxxcaijing    | 项目源码 | 文件源码
def make_shell_context():
    return dict(app=app, db=db, User=User, Role=Role)
    manager.add_command("shell", Shell(make_context=make_shell_context))
项目:MoegirlUpdater    作者:kafuuchino    | 项目源码 | 文件源码
def init_context():
    return dict(app=app)
    manager.add_command('shell',Shell(make_context=init_context))
项目:KoushiHime    作者:ethe    | 项目源码 | 文件源码
def init_context():
    return dict(app=app)
    manager.add_command('shell',Shell(make_context=init_context))