release code base

This commit is contained in:
Adnen Abdessaied 2024-02-20 16:31:21 +01:00
commit efbd43fed1
70 changed files with 4923 additions and 0 deletions

26
config/config.py Normal file
View file

@ -0,0 +1,26 @@
import json
import os
def read_default_config():
dirpath = os.path.dirname(__file__)
path = os.path.join(dirpath, "default.json")
with open(path) as config_file:
config = json.load(config_file)
return config
def read_config(path):
with open(path) as config_file:
config = json.load(config_file)
return config
def update_nested_dicts(old_dict, update_dict):
for key in update_dict:
if key in old_dict:
old_dict[key].update(update_dict[key])
else:
old_dict[key] = update_dict[key]
return old_dict