| 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 |
|---|
| 4 | |
|---|
| 5 | ======================== |
|---|
| 6 | Announcing PyYAML-3.04 |
|---|
| 7 | ======================== |
|---|
| 8 | |
|---|
| 9 | A new release of PyYAML, featuring LibYAML bindings and support for recursive |
|---|
| 10 | structures, is now available: |
|---|
| 11 | |
|---|
| 12 | http://pyyaml.org/wiki/PyYAML |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | Changes |
|---|
| 16 | ======= |
|---|
| 17 | |
|---|
| 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). |
|---|
| 22 | |
|---|
| 23 | |
|---|
| 24 | Resources |
|---|
| 25 | ========= |
|---|
| 26 | |
|---|
| 27 | PyYAML homepage: http://pyyaml.org/wiki/PyYAML |
|---|
| 28 | PyYAML documentation: http://pyyaml.org/wiki/PyYAMLDocumentation |
|---|
| 29 | |
|---|
| 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 |
|---|
| 32 | Windows installer: |
|---|
| 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 |
|---|
| 35 | |
|---|
| 36 | PyYAML SVN repository: http://svn.pyyaml.org/pyyaml |
|---|
| 37 | Submit a bug report: http://pyyaml.org/newticket?component=pyyaml |
|---|
| 38 | |
|---|
| 39 | YAML homepage: http://yaml.org/ |
|---|
| 40 | YAML-core mailing list: http://lists.sourceforge.net/lists/listinfo/yaml-core |
|---|
| 41 | |
|---|
| 42 | |
|---|
| 43 | About PyYAML |
|---|
| 44 | ============ |
|---|
| 45 | |
|---|
| 46 | YAML is a data serialization format designed for human readability and |
|---|
| 47 | interaction with scripting languages. PyYAML is a YAML parser and |
|---|
| 48 | emitter for Python. |
|---|
| 49 | |
|---|
| 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. |
|---|
| 54 | |
|---|
| 55 | PyYAML is applicable for a broad range of tasks from complex |
|---|
| 56 | configuration files to object serialization and persistance. |
|---|
| 57 | |
|---|
| 58 | |
|---|
| 59 | Example |
|---|
| 60 | ======= |
|---|
| 61 | |
|---|
| 62 | >>> import yaml |
|---|
| 63 | >>> print yaml.load(""" |
|---|
| 64 | ... &A { |
|---|
| 65 | ... direct self reference: *A, |
|---|
| 66 | ... indirect self references: [*A, *A, *A] |
|---|
| 67 | ... } |
|---|
| 68 | ... """) |
|---|
| 69 | {'direct self reference': {...}, |
|---|
| 70 | 'indirect self references': [{...}, {...}, {...}]} |
|---|
| 71 | |
|---|
| 72 | |
|---|
| 73 | Copyright |
|---|
| 74 | ========= |
|---|
| 75 | |
|---|
| 76 | The PyYAML module is written by Kirill Simonov <xi@resolvent.net>. |
|---|
| 77 | |
|---|
| 78 | PyYAML is released under the MIT license. |
|---|
| 79 | |
|---|
| 80 | This release is developed with the support of the Google Summer of Code |
|---|
| 81 | program under the mentorship of Clark Evans. |
|---|
| 82 | |
|---|