start windows

This commit is contained in:
KAymeric
2024-05-15 23:17:55 +02:00
parent 235d9be35d
commit e6d66cc18e
14 changed files with 195 additions and 32 deletions

11
utils/JsonReader.py Normal file
View File

@@ -0,0 +1,11 @@
import json
class JsonReader:
def __init__(self, json_file):
self.data = self._load_json(json_file)
def _load_json(self, json_file : str):
f = open(json_file)
js = json.load(f)
return js