save json file python

JavaScript
import json

data = {"key": "value"}

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

with open('data.txt') as json_file:
    data = json.load(json_file)import json
with open('data.json', 'w') as f:
    json.dump(data, f)import json

with open('file_to_load.json', 'r') as file:
  data = json.load(file)import json

data = {}

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

Source

Also in JavaScript: