File size: 115 Bytes
9b896f5
 
 
 
 
 
1
2
3
4
5
6
import json


def json_save(filename, data):
    with open(filename, "w") as f:
        json.dump(data, f,indent=4)