Read YAML - Python YAML
Keyboard shortcuts
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
Read YAML
- load
- Loader
# A comment
Course:
Language:
Name: Ladino
IETF BCP 47: lad
For speakers of:
Name: English
IETF BCP 47: en
Special characters: []
Modules:
- basic/
- words/
- verbs/
- grammar/
- names/
- sentences/
import yaml
filename = "data.yaml"
with open(filename) as fh:
data = yaml.load(fh, Loader=yaml.Loader)
print(data)