Difference between revisions of "Python yaml"

From UVOO Tech Wiki
Jump to navigation Jump to search
(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...")
(No difference)

Revision as of 15:48, 23 May 2021

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