Go to file
2019-02-27 18:07:29 -08:00
examples Fix typos 2017-08-08 06:05:28 -05:00
ext Fix typos 2017-08-08 06:05:28 -05:00
lib/yaml Reverting https://github.com/yaml/pyyaml/pull/74 2018-06-30 15:46:56 -07:00
lib3/yaml Fix for bug https://github.com/yaml/pyyaml/issues/118 2019-02-27 18:07:29 -08:00
tests Reverting https://github.com/yaml/pyyaml/pull/74 2018-06-30 15:46:56 -07:00
.gitignore Ignore common build/runtime artifacts 2016-09-12 08:21:24 -04:00
.travis.yml Build libyaml on travis 2018-06-30 15:42:55 -07:00
announcement.msg Changes for 4.1 release 2018-06-26 15:08:15 -07:00
CHANGES Changes for 4.1 release 2018-06-26 15:08:15 -07:00
LICENSE Changes for 4.01 release 2018-06-24 17:08:57 -06:00
Makefile Changes for 4.1 release 2018-06-26 15:08:15 -07:00
MANIFEST.in scanner: use infinitive verb after auxiliary word could 2015-04-04 13:25:24 -03:00
README Changes for 4.1 release 2018-06-26 15:08:15 -07:00
setup.cfg Fix typos 2017-08-08 06:05:28 -05:00
setup.py Force cython when building sdist 2018-06-30 22:49:22 +02:00
tox.ini Drop unsupported Python 3.3 2018-06-24 13:49:12 -06:00

PyYAML - The next generation YAML parser and emitter 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)

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

For more information, check the PyYAML homepage:
'https://github.com/yaml/pyyaml'.

For PyYAML tutorial and reference, see:
'http://pyyaml.org/wiki/PyYAMLDocumentation'.

Discuss PyYAML with the maintainers in IRC #pyyaml irc.freenode.net.

You may also use the YAML-Core mailing list:
'http://lists.sourceforge.net/lists/listinfo/yaml-core'.

Submit bug reports and feature requests to the PyYAML bug tracker:
'https://github.com/yaml/pyyaml/issues'.

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.