| [160] | 1 | From: Kirill Simonov <xi@gamma.dn.ua> |
|---|
| 2 | To: python-list@python.org, python-announce@python.org, yaml-core@lists.sourceforge.net |
|---|
| [230] | 3 | Subject: [ANN] PyYAML-3.04: YAML parser and emitter for Python |
|---|
| [160] | 4 | |
|---|
| [165] | 5 | ======================== |
|---|
| [230] | 6 | Announcing PyYAML-3.04 |
|---|
| [165] | 7 | ======================== |
|---|
| [160] | 8 | |
|---|
| [230] | 9 | A new release of PyYAML, featuring LibYAML bindings and support for recursive |
|---|
| 10 | structures, is now available: |
|---|
| [165] | 11 | |
|---|
| 12 | http://pyyaml.org/wiki/PyYAML |
|---|
| 13 | |
|---|
| 14 | |
|---|
| 15 | Changes |
|---|
| 16 | ======= |
|---|
| 17 | |
|---|
| [230] | 18 | * Include experimental LibYAML bindings. |
|---|
| 19 | * Fully support recursive structures. |
|---|
| 20 | * Fix a number of bugs and annoyances. |
|---|
| [165] | 21 | |
|---|
| 22 | |
|---|
| 23 | Resources |
|---|
| 24 | ========= |
|---|
| 25 | |
|---|
| 26 | PyYAML homepage: http://pyyaml.org/wiki/PyYAML |
|---|
| 27 | PyYAML documentation: http://pyyaml.org/wiki/PyYAMLDocumentation |
|---|
| 28 | |
|---|
| [230] | 29 | TAR.GZ package: http://pyyaml.org/download/pyyaml/PyYAML-3.04.tar.gz |
|---|
| 30 | ZIP package: http://pyyaml.org/download/pyyaml/PyYAML-3.04.zip |
|---|
| 31 | Windows installer: http://pyyaml.org/download/pyyaml/PyYAML-3.04.win32.exe |
|---|
| [165] | 32 | |
|---|
| 33 | PyYAML SVN repository: http://svn.pyyaml.org/pyyaml |
|---|
| 34 | Submit a bug report: http://pyyaml.org/newticket?component=pyyaml |
|---|
| 35 | |
|---|
| 36 | YAML homepage: http://yaml.org/ |
|---|
| 37 | YAML-core mailing list: http://lists.sourceforge.net/lists/listinfo/yaml-core |
|---|
| 38 | |
|---|
| 39 | |
|---|
| 40 | About PyYAML |
|---|
| 41 | ============ |
|---|
| 42 | |
|---|
| [160] | 43 | YAML is a data serialization format designed for human readability and |
|---|
| 44 | interaction with scripting languages. PyYAML is a YAML parser and |
|---|
| 45 | emitter for Python. |
|---|
| 46 | |
|---|
| 47 | PyYAML features a complete YAML 1.1 parser, Unicode support, pickle |
|---|
| 48 | support, capable extension API, and sensible error messages. PyYAML |
|---|
| 49 | supports standard YAML tags and provides Python-specific tags that allow |
|---|
| 50 | to represent an arbitrary Python object. |
|---|
| 51 | |
|---|
| 52 | PyYAML is applicable for a broad range of tasks from complex |
|---|
| 53 | configuration files to object serialization and persistance. |
|---|
| 54 | |
|---|
| 55 | |
|---|
| 56 | Example |
|---|
| 57 | ======= |
|---|
| 58 | |
|---|
| 59 | >>> import yaml |
|---|
| [230] | 60 | >>> print yaml.load(""" |
|---|
| 61 | ... --- &A |
|---|
| 62 | ... direct self reference: *A |
|---|
| 63 | ... indirect self references: [*A, *A, *A] |
|---|
| [160] | 64 | ... """) |
|---|
| [230] | 65 | {'direct self reference': {...}, |
|---|
| 66 | 'indirect self references': [{...}, {...}, {...}]} |
|---|
| [160] | 67 | |
|---|
| 68 | |
|---|
| 69 | Copyright |
|---|
| 70 | ========= |
|---|
| 71 | |
|---|
| 72 | The PyYAML module is written by Kirill Simonov <xi@resolvent.net>. |
|---|
| 73 | |
|---|
| 74 | PyYAML is released under the MIT license. |
|---|
| 75 | |
|---|