Open
Description
The example in the README.md
and the documentation all print each row individually.
In practice many users will try to convert the data to a pandas dataframe. Why not include that example in the getting started. We currently use:
import pandas as pd
cursor.execute(query)
result = cursor.fetchall()
df = pd.DataFrame(result, columns=[x[0] for x in cursor.description])