• Home
Name Date Size #Lines LOC

..--

.github/16-Dec-2024-917793

examples/16-Dec-2024-966718

lib/16-Dec-2024-5,9414,468

packaging/build/16-Dec-2024-4933

tests/16-Dec-2024-6,9175,904

yaml/16-Dec-2024-1,6701,585

.gitignoreD16-Dec-2024199 2015

CHANGESD16-Dec-202411.9 KiB268212

LICENSED16-Dec-20241.1 KiB2117

MANIFEST.inD16-Dec-2024263 87

MakefileD16-Dec-2024989 5236

OAT.xmlD16-Dec-20248 KiB10154

PKG-INFOD16-Dec-20242 KiB4742

README.OpenSourceD16-Dec-2024289 1211

README.mdD16-Dec-20241.5 KiB5434

announcement.msgD16-Dec-20242.8 KiB9969

bundle.jsonD16-Dec-2024763 3433

pyproject.tomlD16-Dec-2024100 43

setup.cfgD16-Dec-202438 53

setup.pyD16-Dec-202410.4 KiB314257

tox.iniD16-Dec-2024147 108

README.OpenSource

1[
2  {
3    "Name": "openEuler:PyYAML",
4    "License": "MIT License",
5    "License File": "LICENSE",
6    "Version Number": "6.0-2.oe2203sp3",
7    "Owner": "xuyong59@huawei.com",
8    "Upstream URL": "https://www.openeuler.org",
9    "Description": "A YAML parser and emitter for Python"
10  }
11]
12

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 <xi@resolvent.net>.
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