File size: 245 Bytes
dd65c5d
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
import json
from box import ConfigBox

def load_json(file):
    with open(path) as f:
        content = json.load(f)
    return ConfigBox(content)

def save_json(file, content):
    with open(path, "w") as f:
        json.dump(data, f, indent=4)