Forked from jakebrinkmann/connect_psycopg2_to_pandas.py
Created
February 2, 2022 17:40
-
-
Save marymlucas/8ac1b1466639edbb09eb5ad48b4c5fae to your computer and use it in GitHub Desktop.
Read SQL query from psycopg2 into pandas dataframe
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
import pandas.io.sql as sqlio | |
import psycopg2 | |
conn = psycopg2.connect("host='{}' port={} dbname='{}' user={} password={}".format(host, port, dbname, username, pwd)) | |
sql = "select count(*) from table;" | |
dat = sqlio.read_sql_query(sql, conn) | |
conn = None |
Author
marymlucas
commented
Feb 2, 2022
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment