Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 710 Bytes

README.rst

File metadata and controls

33 lines (22 loc) · 710 Bytes

YAML

Latest Version https://travis-ci.org/dstufft/yaml.svg?branch=master

yaml is a Python package which parses and emits YAML 1.1. It supports Python 2.6-2.7, Python 3.3+, PyPy and PyPy3.

>>> import yaml
>>> yaml.loads("""
...     mydict:
...         - 1
...         - 2
...         - 3
...     """)
{'mydict': [1, 2, 3]}

Discussion

If you run into bugs, you can file them in our issue tracker.