I need to convert json string to python object. for example,
{
"person":{
    "name":"aa",
    "age":"12",
    "address":{
        "city":"cc",
        "road":"kk"
    }
    }    
}
there are two python class Person and Address used to generate python object. but I don't know how to map it.