json dump to file

33

json dump to file -

import json

data = {"key": "value"}

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

python json dump to file -

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

save json to file -

import json

data = {}

with open('data.txt', 'w') as outfile:
    json.dump(data, outfile)

save json dump to file python -

On a modern system (i.e. Python 3 and UTF-8 support), you can write a nice file with:

import json
with open('data.json', 'w', encoding='utf-8') as f:
    json.dump(data, f, ensure_ascii=False, indent=4)

Comments

Submit
0 Comments