json dump encoding code example
Example 1: 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 2: python json write utf 8
with open('speechbase.json', 'w') as jsonfile:
json.dump(DATA, jsonfile, indent = 4)