I tried to read postgres array from pandas like so:
import pandas as pd
import psycopg2 as pg
con = pg.connect(con_info)
df = pd.read_sql(con,'select my_arr from my_table')
however what i'm getting is a string like so:
my_arr
---------
'{1,2,3}'
I can parse the string, but I want to get it without any string manipulation as a python list.
thanks.
joseph.