##| Copyright: (C) 2019-2020 Kevin Larke ##| License: GNU GPL version 3.0 or above. See the accompanying LICENSE file. 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