flask blueprints list routes flask blueprints list routes flask flask

flask blueprints list routes


def get_bp_urls(blueprint):    from flask import Flask    temp_app = Flask(__name__)     temp_app.register_blueprint(blueprint)    return [str(p) for p in temp_app.url_map.iter_rules()]


This snippet can be modified to present the data that you want. -- Esdes