'Psycopg2 connection sql database to pandas dataframe
I am working on a project where I am using psycopg2 connection to fetch the data from the database like this,
cursor = connection.execute("select * from table")
cursor.fetchall()
Now after getting the data from the table, I am running some extra operations to convert the data from cursor to pandas dataframe. I am looking for some library or some more robust way to convert the data to pandas dataframe from psycopg2 connection.
Any help of guidance will be appreciated. Thanks
Solution 1:[1]
This may be helpful for your case:
import pandas.io.sql as sqlio
df = sqlio.read_sql_query(query, connection)
Where in your case, query = "select * from table"
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Mario |
