pandas dtypes to dict code example
Example 1: pandas to dictionary
df.to_dict('records')
Example 2: convert pandas dataframe to dict with a column as key
df.set_index('columnName').T.to_dict()
Example 3: dataframe to dictionary using index as key
#Use the Dataframe index as the key of the dictionary
df.to_dict('index')