python save json file formatted code example
Example 1: json dump to file
import json
data = {"key": "value"}
with open('data.json', 'w') as jsonfile:
json.dump(data, jsonfile)
Example 2: json load from file python 3
import json
with open('file_to_load.json', 'r') as file:
data = json.load(file)
Example 3: how to print a json file in python
# Python program to read
# json file
import json
# Opening JSON file
f = open('data.json',)
# returns JSON object as
# a dictionary
data = json.load(f)
# Iterating through the json
# list
for i in data['emp_details']:
print(i)
# Closing file
f.close()
Example 4: python format json file
python3 -m json.tool unformatted.json > formatted.json