1Metadata-Version: 2.1 2Name: PyYAML 3Version: 6.0 4Summary: YAML parser and emitter for Python 5Home-page: https://pyyaml.org/ 6Author: Kirill Simonov 7Author-email: xi@resolvent.net 8License: MIT 9Download-URL: https://pypi.org/project/PyYAML/ 10Project-URL: Bug Tracker, https://github.com/yaml/pyyaml/issues 11Project-URL: CI, https://github.com/yaml/pyyaml/actions 12Project-URL: Documentation, https://pyyaml.org/wiki/PyYAMLDocumentation 13Project-URL: Mailing lists, http://lists.sourceforge.net/lists/listinfo/yaml-core 14Project-URL: Source Code, https://github.com/yaml/pyyaml 15Platform: Any 16Classifier: Development Status :: 5 - Production/Stable 17Classifier: Intended Audience :: Developers 18Classifier: License :: OSI Approved :: MIT License 19Classifier: Operating System :: OS Independent 20Classifier: Programming Language :: Cython 21Classifier: Programming Language :: Python 22Classifier: Programming Language :: Python :: 3 23Classifier: Programming Language :: Python :: 3.6 24Classifier: Programming Language :: Python :: 3.7 25Classifier: Programming Language :: Python :: 3.8 26Classifier: Programming Language :: Python :: 3.9 27Classifier: Programming Language :: Python :: 3.10 28Classifier: Programming Language :: Python :: Implementation :: CPython 29Classifier: Programming Language :: Python :: Implementation :: PyPy 30Classifier: Topic :: Software Development :: Libraries :: Python Modules 31Classifier: Topic :: Text Processing :: Markup 32Requires-Python: >=3.6 33License-File: LICENSE 34 35YAML is a data serialization format designed for human readability 36and interaction with scripting languages. PyYAML is a YAML parser 37and emitter for Python. 38 39PyYAML features a complete YAML 1.1 parser, Unicode support, pickle 40support, capable extension API, and sensible error messages. PyYAML 41supports standard YAML tags and provides Python-specific tags that 42allow to represent an arbitrary Python object. 43 44PyYAML is applicable for a broad range of tasks from complex 45configuration files to object serialization and persistence. 46 47