Skip to content

betamaxpy/yaml

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

YAML

Latest Version

image

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.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.7%
  • Shell 0.3%