-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanage.py
40 lines (28 loc) · 911 Bytes
/
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
from flask import url_for
from flask_migrate import Migrate, MigrateCommand
from flask_script import Manager
from app import app
from xword.lib.database import db
migrate = Migrate(app, db)
manager = Manager(app)
manager.add_command('db', MigrateCommand)
@manager.command
def list_routes():
import urllib
output = []
for rule in app.url_map.iter_rules():
options = {}
for arg in rule.arguments:
options[arg] = '[{0}]'.format(arg)
methods = ','.join(rule.methods)
url = url_for(rule.endpoint, **options)
line = urllib.unquote('{:50s} {:20s} {}'.format(rule.endpoint, methods,
url))
output.append(line)
for line in sorted(output):
print(line)
@manager.shell
def make_shell_context():
return dict(app=app, db=db)
if __name__ == '__main__':
manager.run()