METADATA 1.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. Metadata-Version: 2.0
  2. Name: PyYAML
  3. Version: 3.12
  4. Summary: YAML parser and emitter for Python
  5. Home-page: http://pyyaml.org/wiki/PyYAML
  6. Author: Kirill Simonov
  7. Author-email: xi@resolvent.net
  8. License: MIT
  9. Download-URL: http://pyyaml.org/download/pyyaml/PyYAML-3.12.tar.gz
  10. Platform: Any
  11. Classifier: Development Status :: 5 - Production/Stable
  12. Classifier: Intended Audience :: Developers
  13. Classifier: License :: OSI Approved :: MIT License
  14. Classifier: Operating System :: OS Independent
  15. Classifier: Programming Language :: Python
  16. Classifier: Programming Language :: Python :: 2
  17. Classifier: Programming Language :: Python :: 2.7
  18. Classifier: Programming Language :: Python :: 3
  19. Classifier: Programming Language :: Python :: 3.4
  20. Classifier: Programming Language :: Python :: 3.5
  21. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  22. Classifier: Topic :: Text Processing :: Markup
  23. YAML is a data serialization format designed for human readability
  24. and interaction with scripting languages. PyYAML is a YAML parser
  25. and emitter for Python.
  26. PyYAML features a complete YAML 1.1 parser, Unicode support, pickle
  27. support, capable extension API, and sensible error messages. PyYAML
  28. supports standard YAML tags and provides Python-specific tags that
  29. allow to represent an arbitrary Python object.
  30. PyYAML is applicable for a broad range of tasks from complex
  31. configuration files to object serialization and persistance.