Is it possible to call pandas.read_sql_query using the alchemy session ( https://stackoverflow.com/a/33648514)? example:
with db_session(connection) as db:
df = pd.read_sql(sql_query, db, index_col=None, coerce_float...)
So far I have received the following error:
AttributeError: 'scoped_session' object has no attribute 'cursor'
However I beleive it is good practice to use sessions instead of just reading using a sql alchemy connection/engine.