import JSON file code example
Example 1: open json file python
import json
with open('data.txt') as json_file:
data = json.load(json_file)
Example 2: save json file python
with open('data.txt', 'w') as outfile:
json.dump(data, outfile)
Example 3: how to create json file in python
#import the json module
import json
#create a dictionary which we can add to a json file
dictionary ={
"name" : "sathiyajith",
"rollno" : 56,
"cgpa" : 8.6,
"phonenumber" : "9976770500"
}
#open an object with following inputs: 'name_of_file.json', 'w'
#dump the content fromt he dictionary into the outfile
with open("sample.json", "w") as outfile:
json.dump(dictionary, outfile)