tag | 0cc73eccb9ba3fcd0500c5ac610917a4c2273f90 | |
---|---|---|
tagger | Ingy döt Net <ingy@ingy.net> | Wed Oct 13 15:32:45 2021 -0400 |
object | 8cdff2c80573b8be8e8ad28929264a913a63aa33 |
6.0 release Changes ======= * https://github.com/yaml/pyyaml/pull/327 -- Change README format to Markdown * https://github.com/yaml/pyyaml/pull/483 -- Add a test for YAML 1.1 types * https://github.com/yaml/pyyaml/pull/497 -- fix float resolver to ignore `.` and `._` * https://github.com/yaml/pyyaml/pull/550 -- drop Python 2.7 * https://github.com/yaml/pyyaml/pull/553 -- Fix spelling of “hexadecimal” * https://github.com/yaml/pyyaml/pull/556 -- fix representation of Enum subclasses * https://github.com/yaml/pyyaml/pull/557 -- fix libyaml extension compiler warnings * https://github.com/yaml/pyyaml/pull/560 -- fix ResourceWarning on leaked file descriptors * https://github.com/yaml/pyyaml/pull/561 -- always require `Loader` arg to `yaml.load()` * https://github.com/yaml/pyyaml/pull/564 -- remove remaining direct distutils usage
commit | 8cdff2c80573b8be8e8ad28929264a913a63aa33 | [log] [tgz] |
---|---|---|
author | Matt Davis <mrd@redhat.com> | Wed Oct 13 12:04:44 2021 -0700 |
committer | Matt Davis <mrd@redhat.com> | Wed Oct 13 12:12:51 2021 -0700 |
tree | b5450f87b1927caf3b2d44bca9609f5222b8949c | |
parent | a4fb55e943abf25055725245b0779cf527069a78 [diff] |
6.0 release
A full-featured YAML processing framework for Python
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)
PyYAML includes a comprehensive test suite. To run the tests, type python setup.py test
.
For more information, check the PyYAML homepage.
Discuss PyYAML with the maintainers on Matrix at https://matrix.to/#/#pyyaml:yaml.io or IRC #pyyaml irc.libera.chat
Submit bug reports and feature requests to the PyYAML bug tracker.
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.