Python JSON Save para Arquivo
with open('output.json', 'w') as outfile:
json.dump(data, outfile)
Anxious Axolotl
with open('output.json', 'w') as outfile:
json.dump(data, outfile)
import json
data = {"key": "value"}
with open('data.json', 'w') as jsonfile:
json.dump(data, jsonfile)
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)
with open('data.txt', 'w') as outfile:
json.dump(data, outfile)
# to write on file
# data_dict is a dictionary
import json
with open('data.json', 'w') as f:
json.dump(data_dict, f)