pandas dict as column code example
Example 1: columns to dictionary pandas
pd.Series(df.A.values,index=df.B).to_dict()
Example 2: convert pandas dataframe to dict with a column as key
df.set_index('columnName').T.to_dict()
pd.Series(df.A.values,index=df.B).to_dict()
df.set_index('columnName').T.to_dict()