DESCR 694 B

12345678910111213141516
  1. PyYAML is a YAML parser and emitter for the Python programming language.
  2. PyYAML features
  3. * a complete YAML 1.1 parser. In particular, PyYAML can parse all
  4. examples from the specification. The parsing algorithm is simple
  5. enough to be a reference for YAML parser implementors.
  6. * Unicode support including UTF-8/UTF-16 input/output and \u escape
  7. sequences.
  8. * low-level event-based parser and emitter API (like SAX).
  9. * high-level API for serializing and deserializing native Python
  10. objects (like DOM or pickle).
  11. * support for all types from the YAML types repository. A simple
  12. extension API is provided.
  13. * relatively sensible error messages.