Exploration for understanding what is the best way to manage routing in Flask in terms of performance, maintainability, use cases.
Started with a question on stackoverflow.
Flask allows for redirect. It helps for managing operational redirects. But I haven't found any elegant way to manage URI persistence (aka the fabric of time) on a long term.
from flask import redirect
@app.route('/shiny')