| [378] | 1 | From: Kirill Simonov <xi@resolvent.net> |
|---|
| [369] | 2 | To: python-list@python.org, python-announce@python.org, yaml-core@lists.sourceforge.net |
|---|
| [378] | 3 | Subject: [ANN] PyYAML-3.10: YAML parser and emitter for Python |
|---|
| [160] | 4 | |
|---|
| [165] | 5 | ======================== |
|---|
| [378] | 6 | Announcing PyYAML-3.10 |
|---|
| [165] | 7 | ======================== |
|---|
| [160] | 8 | |
|---|
| [360] | 9 | A new bug fix release of PyYAML is now available: |
|---|
| [165] | 10 | |
|---|
| 11 | http://pyyaml.org/wiki/PyYAML |
|---|
| 12 | |
|---|
| 13 | |
|---|
| 14 | Changes |
|---|
| 15 | ======= |
|---|
| 16 | |
|---|
| [378] | 17 | * Do not try to build LibYAML bindings on platforms other than CPython; |
|---|
| 18 | this fixed installation under Jython (Thank to olt(at)bogosoft(dot)com). |
|---|
| 19 | * Clear cyclic references in the parser and the emitter |
|---|
| 20 | (Thank to kristjan(at)ccpgames(dot)com). |
|---|
| 21 | * LibYAML bindings are rebuilt with the latest version of Cython. |
|---|
| [380] | 22 | * Dropped support for Python 2.3 and 2.4; currently supported versions |
|---|
| 23 | are 2.5 to 3.2. |
|---|
| [165] | 24 | |
|---|
| 25 | |
|---|
| 26 | Resources |
|---|
| 27 | ========= |
|---|
| 28 | |
|---|
| 29 | PyYAML homepage: http://pyyaml.org/wiki/PyYAML |
|---|
| 30 | PyYAML documentation: http://pyyaml.org/wiki/PyYAMLDocumentation |
|---|
| 31 | |
|---|
| [378] | 32 | TAR.GZ package: http://pyyaml.org/download/pyyaml/PyYAML-3.10.tar.gz |
|---|
| 33 | ZIP package: http://pyyaml.org/download/pyyaml/PyYAML-3.10.zip |
|---|
| [336] | 34 | Windows installers: |
|---|
| [378] | 35 | http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py2.3.exe |
|---|
| 36 | http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py2.4.exe |
|---|
| 37 | http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py2.5.exe |
|---|
| 38 | http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py2.6.exe |
|---|
| 39 | http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py3.0.exe |
|---|
| 40 | http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py3.1.exe |
|---|
| 41 | http://pyyaml.org/download/pyyaml/PyYAML-3.10.win32-py3.2.exe |
|---|
| [165] | 42 | |
|---|
| 43 | PyYAML SVN repository: http://svn.pyyaml.org/pyyaml |
|---|
| 44 | Submit a bug report: http://pyyaml.org/newticket?component=pyyaml |
|---|
| 45 | |
|---|
| 46 | YAML homepage: http://yaml.org/ |
|---|
| 47 | YAML-core mailing list: http://lists.sourceforge.net/lists/listinfo/yaml-core |
|---|
| 48 | |
|---|
| 49 | |
|---|
| 50 | About PyYAML |
|---|
| 51 | ============ |
|---|
| 52 | |
|---|
| [160] | 53 | YAML is a data serialization format designed for human readability and |
|---|
| 54 | interaction with scripting languages. PyYAML is a YAML parser and |
|---|
| 55 | emitter for Python. |
|---|
| 56 | |
|---|
| 57 | PyYAML features a complete YAML 1.1 parser, Unicode support, pickle |
|---|
| 58 | support, capable extension API, and sensible error messages. PyYAML |
|---|
| 59 | supports standard YAML tags and provides Python-specific tags that allow |
|---|
| 60 | to represent an arbitrary Python object. |
|---|
| 61 | |
|---|
| 62 | PyYAML is applicable for a broad range of tasks from complex |
|---|
| 63 | configuration files to object serialization and persistance. |
|---|
| 64 | |
|---|
| 65 | |
|---|
| 66 | Example |
|---|
| 67 | ======= |
|---|
| 68 | |
|---|
| 69 | >>> import yaml |
|---|
| [253] | 70 | |
|---|
| 71 | >>> yaml.load(""" |
|---|
| 72 | ... name: PyYAML |
|---|
| 73 | ... description: YAML parser and emitter for Python |
|---|
| 74 | ... homepage: http://pyyaml.org/wiki/PyYAML |
|---|
| 75 | ... keywords: [YAML, serialization, configuration, persistance, pickle] |
|---|
| [160] | 76 | ... """) |
|---|
| [253] | 77 | {'keywords': ['YAML', 'serialization', 'configuration', 'persistance', |
|---|
| 78 | 'pickle'], 'homepage': 'http://pyyaml.org/wiki/PyYAML', 'description': |
|---|
| 79 | 'YAML parser and emitter for Python', 'name': 'PyYAML'} |
|---|
| [160] | 80 | |
|---|
| [253] | 81 | >>> print yaml.dump(_) |
|---|
| 82 | name: PyYAML |
|---|
| 83 | homepage: http://pyyaml.org/wiki/PyYAML |
|---|
| 84 | description: YAML parser and emitter for Python |
|---|
| 85 | keywords: [YAML, serialization, configuration, persistance, pickle] |
|---|
| [160] | 86 | |
|---|
| [253] | 87 | |
|---|
| [160] | 88 | Copyright |
|---|
| 89 | ========= |
|---|
| 90 | |
|---|
| 91 | The PyYAML module is written by Kirill Simonov <xi@resolvent.net>. |
|---|
| 92 | |
|---|
| 93 | PyYAML is released under the MIT license. |
|---|
| 94 | |
|---|