Go to file
2008-10-01 23:16:09 +00:00
examples Dropped setuptools-based setup.py in favor of custom distribution and build_ext command. 2008-10-01 23:16:09 +00:00
ext Make compose() and load() ensure that the input stream contains a single document. Fixes #54. 2007-08-21 20:25:34 +00:00
lib/yaml Added attributes `yaml.__version__ and yaml.__libyaml__` (fixes #85). 2008-09-30 13:44:04 +00:00
tests Added a test for single dot being a float bug. 2008-09-30 11:56:14 +00:00
announcement.msg Dropped setuptools-based setup.py in favor of custom distribution and build_ext command. 2008-10-01 23:16:09 +00:00
ez_setup.py Added a setuptools installer 'ez_setup.py'. 2008-09-30 13:29:34 +00:00
LICENSE Move pyyaml3000 to a separate directory. 2006-03-04 22:43:48 +00:00
Makefile Updated the manifest file. 2008-09-30 14:37:49 +00:00
MANIFEST.in Dropped setuptools-based setup.py in favor of custom distribution and build_ext command. 2008-10-01 23:16:09 +00:00
README Updated README, announcement and MANIFEST files for the 3.06 release. 2008-09-30 13:08:14 +00:00
setup.cfg Fixed include_dirs and library_dirs for the Windows build. 2008-09-30 14:55:28 +00:00
setup.py Dropped setuptools-based setup.py in favor of custom distribution and build_ext command. 2008-10-01 23:16:09 +00:00

PyYAML - The next generation YAML parser and emitter for Python.

To install, type 'python setup.py install'.

To build and install PyYAML with LibYAML bindings, type
'python setup.py --with-libyaml install'.
Then you may use a fast LibYAML-based parser and emitter as follows:

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

For more information, check the PyYAML homepage:
'http://pyyaml.org/wiki/PyYAML'.

Documentation (rough and incomplete though):
'http://pyyaml.org/wiki/PyYAMLDocumentation'.

Post your questions and opinions to the YAML-Core mailing list:
'http://lists.sourceforge.net/lists/listinfo/yaml-core'.

Submit bug reports and feature requests to the PyYAML bug tracker:
'http://pyyaml.org/newticket?component=pyyaml'.

PyYAML is written by Kirill Simonov <xi@resolvent.net>.  It is released
under the MIT license. See the file LICENSE for more details.