Files
2026-05-22 10:02:10 +02:00

8 lines
197 B
Python

import yaml
from box import Box
with open("configs/config.yml", "r") as yml_file:
full_cfg = yaml.safe_load(yml_file)
cfg = Box({**full_cfg["base"]}, default_box=True, default_box_attr=None)