def console():
banner = """
[Sea Console]:
the following vars are included:
`app` (the current app)
"""
ctx = {'app': current_app}
try:
from IPython import embed
h, kwargs = embed, dict(banner1=banner, user_ns=ctx)
except ImportError:
import code
h, kwargs = code.interact, dict(banner=banner, local=ctx)
h(**kwargs)
return 0
评论列表
文章目录