ska-referee-test/ref-test/app/tools/data.py
2022-06-11 11:29:15 +01:00

11 lines
300 B
Python

from .. import Config
from ..data import data_dir
import json
def load(filename:str):
with open(f'./{data_dir}/{filename}') as file:
return json.load(file)
def save(data:dict, filename:str):
with open(f'./{data_dir}/{filename}', 'w') as file:
json.dump(data, file, indent=4)