1st JSON
{
"x": 10.1,
"y": 20,
"name": "Anu",
"dob": "2010-10-10"
}
2nd JSON
{
"x": 10,
"y": 20,
"name": "Ani",
"dob": "2010-10-11",
āzā:100
}
Result JSON
{
"x": 0.1,
"name": "Text change",
"dob": "1"
"z": "Only in 2"
}
So i tried converting the json strings to dictionary using the json.loads function and then getting the difference between the dictionaries using deepdiff but it gives me the output that what has changed in the dictionary and not the desired output as mentioned above.