I have large text files containing lists of nested dictionaries of the below sample format:
[ {key1:value1, key2:value2, key3: { key3_key1:key3_value1,
key3_key2:key3_value2
} ]
Trying to convert each list as pandas data frame row of the following column format
columns = [key1, key2, key3_key1, key3_key2]
What is the fastest way to achieve a complete data frame?