The standard python json module only can convert json string to dict structures.
But I prefer to convert json to a model object strutures with their “parent-child” relationship.
I use google-gson in Android apps but don’t know which python library could do this.
You could let the json module construct a dict and then use an
object_hookto transform the dict into an object, something like this: