writing to json file python code example
Example 1: python json dump to file
import json
with open('data.json', 'w') as f:
json.dump(data, f)
Example 2: write json pythonb
>>> import json
>>> data = {'people':[{'name': 'Scott', 'website': 'stackabuse.com', 'from': 'Nebraska'}]}
>>> json.dumps(data, indent=4)
{
"people": [
{
"website": "stackabuse.com",
"from": "Nebraska",
"name": "Scott"
}
]
}