I am trying to read in the JSON structure below into pandas dataframe, but it throws out the error message:
ValueError: Mixing dicts with non-Series may
If you just need the result part in a dataframe, then here is the code to help you.
import json import pandas as pd data = json.load(open('json_file.json')) df = pd.DataFrame(data["result"])