2019-12-02 20:58:55 +01:00
|
|
|
From: Tina Müller <post@tinita.de>
|
2015-04-04 13:25:24 -03:00
|
|
|
To: python-list@python.org, python-announce@python.org, yaml-core@lists.sourceforge.net
|
2020-01-06 21:09:53 +01:00
|
|
|
Subject: [ANN] PyYAML-5.3: YAML parser and emitter for Python
|
2015-04-04 13:25:24 -03:00
|
|
|
|
2018-06-24 23:56:07 -04:00
|
|
|
=======================
|
2020-01-06 21:09:53 +01:00
|
|
|
Announcing PyYAML-5.3
|
2018-06-24 23:56:07 -04:00
|
|
|
=======================
|
2015-04-04 13:25:24 -03:00
|
|
|
|
2019-12-02 20:58:55 +01:00
|
|
|
A new release of PyYAML is now available:
|
2018-06-24 23:56:07 -04:00
|
|
|
https://pypi.org/project/PyYAML/
|
2015-04-04 13:25:24 -03:00
|
|
|
|
2020-01-06 21:09:53 +01:00
|
|
|
This release contains some bugfixes (handling of slots, enable unicode for
|
|
|
|
maxunicode < 0xffff, enable large files), enhancements (create timezone
|
|
|
|
aware datetimes) and some other small enhancements.
|
2015-04-04 13:25:24 -03:00
|
|
|
|
|
|
|
Changes
|
|
|
|
=======
|
|
|
|
|
2020-01-06 21:09:53 +01:00
|
|
|
* https://github.com/yaml/pyyaml/pull/290 -- Use `is` instead of equality for comparing with `None`
|
|
|
|
* https://github.com/yaml/pyyaml/pull/270 -- fix typos and stylistic nit
|
|
|
|
* https://github.com/yaml/pyyaml/pull/309 -- Fix up small typo
|
|
|
|
* https://github.com/yaml/pyyaml/pull/161 -- Fix handling of __slots__
|
|
|
|
* https://github.com/yaml/pyyaml/pull/358 -- Allow calling add_multi_constructor with None
|
|
|
|
* https://github.com/yaml/pyyaml/pull/285 -- Add use of safe_load() function in README
|
|
|
|
* https://github.com/yaml/pyyaml/pull/351 -- Fix reader for Unicode code points over 0xFFFF
|
|
|
|
* https://github.com/yaml/pyyaml/pull/360 -- Enable certain unicode tests when maxunicode not > 0xffff
|
|
|
|
* https://github.com/yaml/pyyaml/pull/359 -- Use full_load in yaml-highlight example
|
|
|
|
* https://github.com/yaml/pyyaml/pull/244 -- Document that PyYAML is implemented with Cython
|
|
|
|
* https://github.com/yaml/pyyaml/pull/329 -- Fix for Python 3.10
|
|
|
|
* https://github.com/yaml/pyyaml/pull/310 -- increase size of index, line, and column fields
|
|
|
|
* https://github.com/yaml/pyyaml/pull/260 -- remove some unused imports
|
|
|
|
* https://github.com/yaml/pyyaml/pull/163 -- Create timezone-aware datetimes when parsed as such
|
|
|
|
* https://github.com/yaml/pyyaml/pull/363 -- Add tests for timezone
|
|
|
|
|
2015-04-04 13:25:24 -03:00
|
|
|
|
|
|
|
Resources
|
|
|
|
=========
|
|
|
|
|
2018-06-24 17:08:57 -06:00
|
|
|
PyYAML IRC Channel: #pyyaml on irc.freenode.net
|
|
|
|
PyYAML homepage: https://github.com/yaml/pyyaml
|
2015-04-04 13:25:24 -03:00
|
|
|
PyYAML documentation: http://pyyaml.org/wiki/PyYAMLDocumentation
|
2018-06-24 23:56:07 -04:00
|
|
|
Source and binary installers: https://pypi.org/project/PyYAML/
|
|
|
|
GitHub repository: https://github.com/yaml/pyyaml/
|
|
|
|
Bug tracking: https://github.com/yaml/pyyaml/issues
|
2015-04-04 13:25:24 -03:00
|
|
|
|
|
|
|
YAML homepage: http://yaml.org/
|
|
|
|
YAML-core mailing list: http://lists.sourceforge.net/lists/listinfo/yaml-core
|
|
|
|
|
|
|
|
|
|
|
|
About PyYAML
|
|
|
|
============
|
|
|
|
|
|
|
|
YAML is a data serialization format designed for human readability and
|
2018-06-24 17:08:57 -06:00
|
|
|
interaction with scripting languages. PyYAML is a YAML parser and emitter for
|
|
|
|
Python.
|
2015-04-04 13:25:24 -03:00
|
|
|
|
2018-06-24 17:08:57 -06:00
|
|
|
PyYAML features a complete YAML 1.1 parser, Unicode support, pickle support,
|
|
|
|
capable extension API, and sensible error messages. PyYAML supports standard
|
|
|
|
YAML tags and provides Python-specific tags that allow to represent an
|
|
|
|
arbitrary Python object.
|
2015-04-04 13:25:24 -03:00
|
|
|
|
2018-06-24 17:08:57 -06:00
|
|
|
PyYAML is applicable for a broad range of tasks from complex configuration
|
|
|
|
files to object serialization and persistence.
|
2015-04-04 13:25:24 -03:00
|
|
|
|
|
|
|
|
|
|
|
Example
|
|
|
|
=======
|
|
|
|
|
|
|
|
>>> import yaml
|
|
|
|
|
2019-03-13 08:45:34 -07:00
|
|
|
>>> yaml.full_load("""
|
2015-04-04 13:25:24 -03:00
|
|
|
... name: PyYAML
|
|
|
|
... description: YAML parser and emitter for Python
|
2018-06-24 17:08:57 -06:00
|
|
|
... homepage: https://github.com/yaml/pyyaml
|
2017-01-22 12:42:27 +01:00
|
|
|
... keywords: [YAML, serialization, configuration, persistence, pickle]
|
2015-04-04 13:25:24 -03:00
|
|
|
... """)
|
2017-01-22 12:42:27 +01:00
|
|
|
{'keywords': ['YAML', 'serialization', 'configuration', 'persistence',
|
2018-06-24 17:08:57 -06:00
|
|
|
'pickle'], 'homepage': 'https://github.com/yaml/pyyaml', 'description':
|
2015-04-04 13:25:24 -03:00
|
|
|
'YAML parser and emitter for Python', 'name': 'PyYAML'}
|
|
|
|
|
2019-03-13 08:45:34 -07:00
|
|
|
>>> print(yaml.dump(_))
|
2015-04-04 13:25:24 -03:00
|
|
|
name: PyYAML
|
2018-06-24 17:08:57 -06:00
|
|
|
homepage: https://github.com/yaml/pyyaml
|
2015-04-04 13:25:24 -03:00
|
|
|
description: YAML parser and emitter for Python
|
2017-01-22 12:42:27 +01:00
|
|
|
keywords: [YAML, serialization, configuration, persistence, pickle]
|
2015-04-04 13:25:24 -03:00
|
|
|
|
|
|
|
|
2018-06-24 17:08:57 -06:00
|
|
|
Maintainers
|
|
|
|
===========
|
|
|
|
|
2019-03-13 08:45:34 -07:00
|
|
|
The following people are currently responsible for maintaining PyYAML:
|
2018-06-24 17:08:57 -06:00
|
|
|
|
|
|
|
* Ingy döt Net
|
|
|
|
* Tina Mueller
|
2018-06-24 23:56:07 -04:00
|
|
|
* Matt Davis
|
2018-06-24 17:08:57 -06:00
|
|
|
|
|
|
|
and many thanks to all who have contribributed!
|
|
|
|
See: https://github.com/yaml/pyyaml/pulls
|
|
|
|
|
|
|
|
|
2015-04-04 13:25:24 -03:00
|
|
|
Copyright
|
|
|
|
=========
|
|
|
|
|
2019-03-13 08:45:34 -07:00
|
|
|
Copyright (c) 2017-2019 Ingy döt Net <ingy@ingy.net>
|
2018-06-24 17:08:57 -06:00
|
|
|
Copyright (c) 2006-2016 Kirill Simonov <xi@resolvent.net>
|
2015-04-04 13:25:24 -03:00
|
|
|
|
2018-06-24 17:08:57 -06:00
|
|
|
The PyYAML module was written by Kirill Simonov <xi@resolvent.net>.
|
|
|
|
It is currently maintained by the YAML and Python communities.
|
2015-04-04 13:25:24 -03:00
|
|
|
|
2018-06-24 17:08:57 -06:00
|
|
|
PyYAML is released under the MIT license.
|
2018-06-24 23:56:07 -04:00
|
|
|
See the file LICENSE for more details.
|