File size: 159 Bytes
5120311
 
 
 
 
1
2
3
4
5
6
from yaml import load, Loader

config_params = {}
with open('config/config.yml', encoding='utf-8') as f:
    config_params.update(load(f, Loader=Loader))