File size: 184 Bytes
73683aa
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
# config.py
import yaml

def load_config(config_path="config.yaml"):
    with open(config_path, "r") as f:
        config = yaml.safe_load(f)
    return config

config = load_config()