I am working on a Flask project where I need to query certain entries from a database and perform some computations on them. I use Flask-SQLAlchemy to load/update/query the database, and Pandas definitely looks like the best choice to perform the computations I need.
But I need to efficiently convert the output to Pandas first. The only ways to do it that I found through Google search were through SQLAlchemy, which, as far as I understand, has a different syntax from Flask-SQLAlchemy. Any clues how I could proceed without switching to SQLAlchemy?