I have a prefix that I want to add to every route. Right now I add a constant to the route at every definition. Is there a way to do this automatically?
PR
from flask import Flask app = Flask(__name__) app.register_blueprint(bp, url_prefix='/abc/123') if __name__ == "__main__": app.run(debug='True', port=4444) bp = Blueprint('burritos', __name__, template_folder='templates') @bp.route('/') def test(): return "success"