Skip to content

Add yaml config file

Add a cfdp-gui.config.yml file to the repo that:

  • contains all the config settings in yaml format
  • is loaded by default at app startup

To load a yaml file:

with open(filename, 'r') as f:
    document = yaml.safe_load(f)