18 lines
273 B
Python
18 lines
273 B
Python
import yaml,types
|
|
|
|
def parse_yaml_cfg( fn ):
|
|
"""Parse the YAML configuration file."""
|
|
|
|
cfg = None
|
|
|
|
with open(fn,"r") as f:
|
|
cfgD = yaml.load(f, Loader=yaml.FullLoader)
|
|
|
|
cfg = types.SimpleNamespace(**cfgD['p_ac'])
|
|
|
|
return cfg
|
|
|
|
|
|
|
|
|