python to object to json code example
Example 1: python object to json
jsonStr = json.dumps(myobject.__dict__)
Example 2: python to json
# a Python object (dict):
x = {
"name": "John",
"age": 30,
"city": "New York"
}
# convert into JSON:
y = json.dumps(x)