Python yaml

From UVOO Tech Wiki
Jump to navigation Jump to search

pip install pyyaml

import yaml

with open("example.yaml", 'r') as stream:
    try:
        print(yaml.safe_load(stream))
    except yaml.YAMLError as exc:
        print(exc)

https://pypi.org/project/envyaml/

or use https://docs.python.org/3/library/configparser.html