You can use pandas' read_sql() function to get column names along with the values.
Here is an example:
import pandas as pd
conn = psycopg2.connect(dsn)
results = pd.read_sql("SELECT * FROM meta", conn)
print(results)
The above code will show you the name of the columns, too.