METADATA 2.0 KB

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