1 From: Kirill Simonov <xi@gamma.dn.ua>
2 To: python-list@python.org, python-announce@python.org, yaml-core@lists.sourceforge.net
3 Subject: [ANN] PyYAML-3.04: YAML parser and emitter for Python
5 ========================
7 ========================
9 A new release of PyYAML, featuring LibYAML bindings and support for recursive
10 structures, is now available:
12 http://pyyaml.org/wiki/PyYAML
18 * Include experimental LibYAML bindings.
19 * Fully support recursive structures.
20 * Fix a number of bugs and annoyances
21 (see http://pyyaml.org/wiki/PyYAML#History for more details).
27 PyYAML homepage: http://pyyaml.org/wiki/PyYAML
28 PyYAML documentation: http://pyyaml.org/wiki/PyYAMLDocumentation
30 TAR.GZ package: http://pyyaml.org/download/pyyaml/PyYAML-3.04.tar.gz
31 ZIP package: http://pyyaml.org/download/pyyaml/PyYAML-3.04.zip
33 http://pyyaml.org/download/pyyaml/PyYAML-3.04.win32-py2.3.exe
34 http://pyyaml.org/download/pyyaml/PyYAML-3.04.win32-py2.4.exe
36 PyYAML SVN repository: http://svn.pyyaml.org/pyyaml
37 Submit a bug report: http://pyyaml.org/newticket?component=pyyaml
39 YAML homepage: http://yaml.org/
40 YAML-core mailing list: http://lists.sourceforge.net/lists/listinfo/yaml-core
46 YAML is a data serialization format designed for human readability and
47 interaction with scripting languages. PyYAML is a YAML parser and
50 PyYAML features a complete YAML 1.1 parser, Unicode support, pickle
51 support, capable extension API, and sensible error messages. PyYAML
52 supports standard YAML tags and provides Python-specific tags that allow
53 to represent an arbitrary Python object.
55 PyYAML is applicable for a broad range of tasks from complex
56 configuration files to object serialization and persistance.
63 >>> print yaml.load("""
65 ... direct self reference: *A,
66 ... indirect self references: [*A, *A, *A]
69 {'direct self reference': {...},
70 'indirect self references': [{...}, {...}, {...}]}
76 The PyYAML module is written by Kirill Simonov <xi@resolvent.net>.
78 PyYAML is released under the MIT license.
80 This release is developed with the support of the Google Summer of Code
81 program under the mentorship of Clark Evans.