YAML parser and emitter for Python https://pyyaml.org/wiki/PyYAML
Go to file
2024-01-05 16:55:03 +01:00
python-yaml--cython-3.0.2.patch rebuilt by autoport with build requirements: python3-devel>=3.11.5-3mamba [release 6.0.1-2mamba;Fri Sep 29 2023] 2024-01-05 16:55:02 +01:00
python-yaml.spec fix obsoletes for PyYAML-py3* [release 6.0.1-3mamba;Mon Oct 16 2023] 2024-01-05 16:55:03 +01:00
README.md rebuilt by autoport with build requirements: python3-devel>=3.11.5-3mamba [release 6.0.1-2mamba;Fri Sep 29 2023] 2024-01-05 16:55:02 +01:00

python-yaml

YAML parser and emitter for python: * a complete YAML 1.1 parser. In particular, Python-YAML can parse all examples from the specification. The parsing algorithm is simple enough to be a reference for YAML parser implementors. * Unicode support including UTF-8/UTF-16 input/output and \u escape sequences. * low-level event-based parser and emitter API (like SAX). * high-level API for serializing and deserializing native Python objects (like DOM or pickle). * support for all types from the YAML types repository. A simple extension API is provided. * both pure-Python and fast LibYAML-based parsers and emitters. * relatively sensible error messages.