Input JSON
{
"tables": {
"Cloc": {
"MINT": {
"CANDY": {
"Mob": [{
"loc": "AA",
"loc2": ["AAA"]
},
{
"loc": "AA",
"loc2": ["AAA"]
}
]
}
}
},
"T1": {
"MINT": {
"T2": {
"T3": [{
"loc": "AAA",
"loc2": ["AAA"]
}]
}
}
}
}
}
Expected Output
=========================================
I have tried processing this nested JSON using pd.json_normalize()
data = pd.DataFrame(nested_json['tables']['Cloc']['MINT']['CANDY']['Mob'])
I have no clue how to proceed, any help or guidance is highly appreciated.
Many Thanks!!
Assuming only the final level consists of a list of dictionaries, you could simply compute the rows. We could do this recursively, so that it works for any number of nesting levels.