Haaribo's picture
Added all project files
984335e
Raw
History Blame Contribute Delete
115 Bytes
import json
def json_save(filename, data):
with open(filename, "w") as f:
json.dump(data, f,indent=4)