I have a huge json file as follows,
{"id": "KA88457","name": "Steven", "phone":"+6590876589"},
{"id": "KA88457", "fax": ["+6563323248"], "email":"[email protected]"}
I need to merge the two and obtain the desired result as
{"id": "KA88457",
"name": "Steven",
"phone":"+6590876589",
"fax":["+6563323248"],
"email":"[email protected]"}
I checked online but I was able to find only merging two json files in python. Can you please help to in merging these type of records using python.