• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..--

.github/workflows/25-Apr-2025-864744

examples/25-Apr-2025-966718

lib/25-Apr-2025-5,9784,502

packaging/build/25-Apr-2025-4933

tests/25-Apr-2025-6,9175,904

yaml/25-Apr-2025-1,6701,585

.gitignoreD25-Apr-2025199 2015

Android.bpD25-Apr-2025906 3027

CHANGESD25-Apr-202511.9 KiB268212

LICENSED25-Apr-20251.1 KiB2117

MANIFEST.inD25-Apr-2025263 87

METADATAD25-Apr-2025349 1816

MODULE_LICENSE_MITD25-Apr-20250

MakefileD25-Apr-2025989 5236

NOTICED25-Apr-20251.1 KiB2117

OWNERSD25-Apr-2025161 107

README.mdD25-Apr-20251.5 KiB5434

announcement.msgD25-Apr-20253.7 KiB11482

pyproject.tomlD25-Apr-2025100 43

setup.pyD25-Apr-202510.4 KiB314257

tox.iniD25-Apr-2025141 108

README.md

1PyYAML
2======
3
4A full-featured YAML processing framework for Python
5
6## Installation
7
8To install, type `python setup.py install`.
9
10By default, the `setup.py` script checks whether LibYAML is installed and if
11so, builds and installs LibYAML bindings.
12To skip the check and force installation of LibYAML bindings, use the option
13`--with-libyaml`: `python setup.py --with-libyaml install`.
14To disable the check and skip building and installing LibYAML bindings, use
15`--without-libyaml`: `python setup.py --without-libyaml install`.
16
17When LibYAML bindings are installed, you may use fast LibYAML-based parser and
18emitter as follows:
19
20    >>> yaml.load(stream, Loader=yaml.CLoader)
21    >>> yaml.dump(data, Dumper=yaml.CDumper)
22
23If you don't trust the input YAML stream, you should use:
24
25    >>> yaml.safe_load(stream)
26
27## Testing
28
29PyYAML includes a comprehensive test suite.
30To run the tests, type `python setup.py test`.
31
32## Further Information
33
34* For more information, check the
35  [PyYAML homepage](https://github.com/yaml/pyyaml).
36
37* [PyYAML tutorial and reference](http://pyyaml.org/wiki/PyYAMLDocumentation).
38
39* Discuss PyYAML with the maintainers on
40  Matrix at https://matrix.to/#/#pyyaml:yaml.io or
41  IRC #pyyaml irc.libera.chat
42
43* Submit bug reports and feature requests to the
44  [PyYAML bug tracker](https://github.com/yaml/pyyaml/issues).
45
46## License
47
48The PyYAML module was written by Kirill Simonov <[email protected]>.
49It is currently maintained by the YAML and Python communities.
50
51PyYAML is released under the MIT license.
52
53See the file LICENSE for more details.
54