I would like to find the difference between two JSON but, when I try to use the DeepDiff method it finds nothing.
from deepdiff import DeepDiff
item1 = {
'__PythonResult__Modules': {
'b': {
'c':
['foo']
}
}
}
item2 = {
"__PythonResult__Modules" : {
"global" : {
"views" : {
"from_python" : {
"QDjl" : ["llll"]
}
}
}
}
}
DeepDiff(item1, item2)
I use Python 3.8 and DeepDiff 5.5.0. Do you have an idea ?
Thank you,