18 lines
376 B
Python
18 lines
376 B
Python
import simplejson as json
|
|
|
|
# init
|
|
CFG_PATH = "cfg/config.json"
|
|
|
|
|
|
# load cfg and return it
|
|
def load_config(cfg_path=CFG_PATH):
|
|
|
|
with open(cfg_path, "r", encoding="utf-8") as config_fp:
|
|
return json.load(config_fp)
|
|
|
|
|
|
def rewrite_config(obj, cfg_path=CFG_PATH):
|
|
|
|
with open(cfg_path, "w", encoding="utf-8") as config_fp:
|
|
json.dump(obj, config_fp, indent=4)
|