Clone this repo:
  1. 78c0b01 Merge tag '6.0.3' into main by Chase Latta · 2 weeks ago main master
  2. 49790e7 Release 6.0.3 (#889) by Matt Davis · 10 months ago upstream/release/6.0 6.0.3
  3. 41309b0 Release 6.0.2 (#819) by Matt Davis · 2 years ago 6.0.2
  4. dd9f0e1 6.0.2rc1 (#809) by Matt Davis · 2 years, 1 month ago 6.0.2rc1
  5. f5527a2 disable CI trigger on PR edits by Matt Davis · 2 years, 11 months ago

PyYAML

A full-featured YAML processing framework for Python

Installation

To install, type python setup.py install.

By default, the setup.py script checks whether LibYAML is installed and if so, builds and installs LibYAML bindings. To skip the check and force installation of LibYAML bindings, use the option --with-libyaml: python setup.py --with-libyaml install. To disable the check and skip building and installing LibYAML bindings, use --without-libyaml: python setup.py --without-libyaml install.

When LibYAML bindings are installed, you may use fast LibYAML-based parser and emitter as follows:

>>> yaml.load(stream, Loader=yaml.CLoader)
>>> yaml.dump(data, Dumper=yaml.CDumper)

If you don't trust the input YAML stream, you should use:

>>> yaml.safe_load(stream)

Testing

PyYAML includes a comprehensive test suite. To run the tests, type python setup.py test.

Further Information

License

The PyYAML module was written by Kirill Simonov xi@resolvent.net. It is currently maintained by the YAML and Python communities.

PyYAML is released under the MIT license.

See the file LICENSE for more details.