Difference between revisions of "Python yaml"
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)