This is a script to help you display any of the tables in your db using SQLAlchemy in your Flask Routes
Run the following to install:
pip install flask-dtfrom flask_dt import FlaskDt
# after declaring your Flask app and SQLAlchemy db instances plus any other additional instances
# assuming your SQLAlchemy db instance is named db
dt = FlaskDt(db)
# This will be called when specifying your routes
@app.route('/tables/<string:tablename>')
@dt.display_table
def your_func():
passYou will find a simple flask application that utilises flask-dt here