Haaribo's picture
Add application file
9b896f5
raw
history blame
115 Bytes
import json
def json_save(filename, data):
with open(filename, "w") as f:
json.dump(data, f,indent=4)