source: trunk/packages/pyyaml/README @ 898

Last change on this file since 898 was 898, checked in by hartmans, 16 years ago

Add pyyaml and libyaml packages
backported from lenny.
There is discussion about how these should go in the repository; these are added in this form
in order to make forward progress.

File size: 902 bytes
Line 
1PyYAML - The next generation YAML parser and emitter for Python.
2
3To install, type 'python setup.py install'.
4
5You may build faster LibYAML based parser and emitter with
6'python setup_with_libyaml.py install'.
7Then you may use the LibYAML based parser this way:
8    >>> yaml.load(stream, Loader=yaml.CLoader)
9    >>> yaml.dump(data, Dumper=yaml.CDumper)
10
11For more information, check the PyYAML homepage:
12'http://pyyaml.org/wiki/PyYAML'.
13
14Documentation (rough and incomplete though):
15'http://pyyaml.org/wiki/PyYAMLDocumentation'.
16
17Post your questions and opinions to the YAML-Core mailing list:
18'http://lists.sourceforge.net/lists/listinfo/yaml-core'.
19
20Submit bug reports and feature requests to the PyYAML bug tracker:
21'http://pyyaml.org/newticket?component=pyyaml'.
22
23PyYAML is written by Kirill Simonov <xi@resolvent.net>.  It is released
24under the MIT license. See the file LICENSE for more details.
Note: See TracBrowser for help on using the repository browser.