from json to python object code example
Example 1: Convert from JSON to Python
import json
# some JSON:
x = '{ "name":"John", "age":30, "city":"New York"}'
# parse x:
y = json.loads(x)
# the result is a Python dictionary:
print(y["age"])
Example 2: python object to json
jsonStr = json.dumps(myobject.__dict__)