I am developing an app with flask and SQL Alchemy. I need to display the queries executed to generate a page alongside the time each query took for debugging
What\'s the
Late reply but setting "echo=True" in your sqlalchemy create_engine will log the queries executed and the time.