ColdCore/yeshello.py

20 lines
544 B
Python
Raw Permalink Normal View History

2016-05-27 03:16:08 +00:00
from app import app, url_for
app.config["SERVER_NAME"] = "server"
with app.app_context():
import urllib.parse
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.parse.unquote("{:50s} {:20s} {}".format(rule.endpoint, methods, url))
output.append(line)
for line in sorted(output):
print(line)