-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanage.py
52 lines (41 loc) · 1.37 KB
/
manage.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
import sys
import os
from click import echo
from apps import create_app
from apps import example
app = create_app('development')
example.register_blueprint(app)
@app.cli.command('urlmap')
def urlmap():
"""Prints out all routes"""
echo("{:50s} {:40s} {}".format('Endpoint', 'Methods', 'Route'))
for route in app.url_map.iter_rules():
methods = ','.join(route.methods)
echo("{:50s} {:40s} {}".format(route.endpoint, methods, route))
@app.cli.command('ipython')
def ipython():
"""Runs a ipython shell in the app context."""
try:
import IPython
except ImportError:
echo("IPython not found. Install with: 'pip install ipython'")
return
from flask.globals import _app_ctx_stack
app = _app_ctx_stack.top.app
banner = 'Python %s on %s\nIPython: %s\nApp: %s%s\nInstance: %s\n' % (
sys.version,
sys.platform,
IPython.__version__,
app.import_name,
app.debug and ' [debug]' or '',
app.instance_path,
)
ctx = {}
# Support the regular Python interpreter startup script if someone
# is using it.
startup = os.environ.get('PYTHONSTARTUP')
if startup and os.path.isfile(startup):
with open(startup, 'r') as f:
eval(compile(f.read(), startup, 'exec'), ctx)
ctx.update(app.make_shell_context())
IPython.embed(banner1=banner, user_ns=ctx)