0
30
Load a YAML file and return the data
Shortcut: yaml.load
yaml.load
0 Comments
import yaml with open(path, 'r') as stream: return yaml.load(stream, Loader=yaml.BaseLoader)