How can I convert a multilevel dict to a Python dataframe using JSON?
I am getting output web api response as below. d = { 'L1': [{'att_1': 10, 'att_2': 'whatever', 'att_4': 214, 'att_5': 'YES'}], 'L2': [{'att_1': 11, 'att_2': 'whatever News', 'att_4': 230, 'att_5': 'another'}], 'L3': [{'att_1': 12, 'att_2': 'whatever says', 'att_4': 213, 'att_5':…