refactored programs and arg structure

This commit is contained in:
Agamemnon Juunes
2024-06-21 00:46:43 -04:00
parent c14a02492b
commit f9a674082f
28 changed files with 596 additions and 355 deletions

8
utils/load_config.py Normal file
View File

@@ -0,0 +1,8 @@
import yaml
from pathlib import Path
config_file = Path(__file__).parent.parent / "config.yaml"
def load_config():
with open(config_file, 'r') as file:
return yaml.safe_load(file)