Python yaml

From UVOO Tech Wiki
Revision as of 15:48, 23 May 2021 by Busk (talk | contribs) (Created page with "pip install pyyaml ``` import yaml with open("example.yaml", 'r') as stream: try: print(yaml.safe_load(stream)) except yaml.YAMLError as exc: print(e...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
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)

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