array of dict to dataframe code example
Example 1: convert dict to dataframe
#Lazy way to convert json dict to df
pd.DataFrame.from_dict(data, orient='index').T
Example 2: pandas dataframe from array of dict
#d is a list of dictionaries
df = pd.DataFrame(d)