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.02: YAML parser and emitter for Python
5 ========================
7 ========================
9 A new bug-fix release of PyYAML is now available:
11 http://pyyaml.org/wiki/PyYAML
17 * Fix win32 installer. Apparently bdist_wininst does not work well under
19 * Fix a bug in add_path_resolver.
20 * Add the yaml-highlight example. Try to run on a color terminal:
21 `python yaml_hl.py <any_document.yaml`.
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.02.tar.gz
31 ZIP package: http://pyyaml.org/download/pyyaml/PyYAML-3.02.zip
32 Windows installer: http://pyyaml.org/download/pyyaml/PyYAML-3.02.win32.exe
34 PyYAML SVN repository: http://svn.pyyaml.org/pyyaml
35 Submit a bug report: http://pyyaml.org/newticket?component=pyyaml
37 YAML homepage: http://yaml.org/
38 YAML-core mailing list: http://lists.sourceforge.net/lists/listinfo/yaml-core
44 YAML is a data serialization format designed for human readability and
45 interaction with scripting languages. PyYAML is a YAML parser and
48 PyYAML features a complete YAML 1.1 parser, Unicode support, pickle
49 support, capable extension API, and sensible error messages. PyYAML
50 supports standard YAML tags and provides Python-specific tags that allow
51 to represent an arbitrary Python object.
53 PyYAML is applicable for a broad range of tasks from complex
54 configuration files to object serialization and persistance.
64 ... description: YAML parser and emitter for Python
65 ... homepage: http://pyyaml.org/wiki/PyYAML
66 ... keywords: [YAML, serialization, configuration, persistance, pickle]
68 {'keywords': ['YAML', 'serialization', 'configuration', 'persistance',
69 'pickle'], 'homepage': 'http://pyyaml.org/wiki/PyYAML', 'description':
70 'YAML parser and emitter for Python', 'name': 'PyYAML'}
72 >>> print yaml.dump(_)
74 homepage: http://pyyaml.org/wiki/PyYAML
75 description: YAML parser and emitter for Python
76 keywords: [YAML, serialization, configuration, persistance, pickle]
82 The PyYAML module is written by Kirill Simonov <xi@resolvent.net>.
84 PyYAML is released under the MIT license.