METADATA 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. Metadata-Version: 2.1
  2. Name: PyYAML
  3. Version: 5.4.1
  4. Summary: YAML parser and emitter for Python
  5. Home-page: https://pyyaml.org/
  6. Author: Kirill Simonov
  7. Author-email: xi@resolvent.net
  8. License: MIT
  9. Download-URL: https://pypi.org/project/PyYAML/
  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 :: 2
  23. Classifier: Programming Language :: Python :: 2.7
  24. Classifier: Programming Language :: Python :: 3
  25. Classifier: Programming Language :: Python :: 3.6
  26. Classifier: Programming Language :: Python :: 3.7
  27. Classifier: Programming Language :: Python :: 3.8
  28. Classifier: Programming Language :: Python :: 3.9
  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: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*
  34. YAML is a data serialization format designed for human readability
  35. and interaction with scripting languages. PyYAML is a YAML parser
  36. and emitter for Python.
  37. PyYAML features a complete YAML 1.1 parser, Unicode support, pickle
  38. support, capable extension API, and sensible error messages. PyYAML
  39. supports standard YAML tags and provides Python-specific tags that
  40. allow to represent an arbitrary Python object.
  41. PyYAML is applicable for a broad range of tasks from complex
  42. configuration files to object serialization and persistence.