python json serialization code example
Example 1: python json dump
import json
with open("data_file.json", "w") as write_file:
json.dump(data, write_file)
Example 2: python json serialize object
import json
info = {
"data": {
"name": "Dave",
"City": "NY"
}
}
# With json.dump (into file)
with open( "data.json" , "w" ) as x:
json.dump( info , x )
# >>> {"data": {"name": "Dave", "City": "NY"}}
# with json.dumps (object)
data = json.dumps( info )
print( data )
# >>> {"data": {"name": "Dave", "City": "NY"}}