python module json code example

Example 1: python json dump to file

import json
with open('data.json', 'w') as f:
    json.dump(data, f)

Example 2: load json

import json

with open('data.txt') as json_file:
    data = json.load(json_file)

Example 3: json decode py

>>> import json
>>> json.loads('["foo", {"bar":["baz", null, 1.0, 2]}]')
['foo', {'bar': ['baz', None, 1.0, 2]}]
>>> json.loads('"\\"foo\\bar"')
'"foo\x08ar'
>>> from io import StringIO
>>> io = StringIO('["streaming API"]')
>>> json.load(io)
['streaming API']

Example 4: json load

import json

with open('path_to_file/person.json') as f:
  data = json.load(f)

# Output: {'name': 'Bob', 'languages': ['English', 'Fench']}
print(data)