• Home
Name Date Size #Lines LOC

..--

.github/workflows/12-May-2024-251215

examples/12-May-2024-966718

lib/12-May-2024-6,1244,596

lib3/12-May-2024-5,9784,493

packaging/build/12-May-2024-372245

tests/12-May-2024-8,5777,260

yaml/12-May-2024-1,8041,717

.appveyor.ymlD12-May-20241,018 389

.gitignoreD12-May-2024223 2116

CHANGESD12-May-202411 KiB255201

LICENSED12-May-20241.1 KiB2117

MANIFEST.inD12-May-2024364 1110

MakefileD12-May-2024927 4530

OAT.xmlD12-May-20248.3 KiB10655

README.OpenSourceD12-May-2024275 1211

README.mdD12-May-20241.5 KiB4429

announcement.msgD12-May-20242.9 KiB10170

pyproject.tomlD12-May-2024100 43

setup.cfgD12-May-2024793 2518

setup.pyD12-May-20249.6 KiB297251

tox.iniD12-May-2024144 108

README.OpenSource

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

README.md

1PyYAML - The next generation YAML parser and emitter for Python.
2
3To install, type 'python setup.py install'.
4
5By default, the setup.py script checks whether LibYAML is installed
6and if so, builds and installs LibYAML bindings.  To skip the check
7and force installation of LibYAML bindings, use the option '--with-libyaml':
8'python setup.py --with-libyaml install'.  To disable the check and
9skip building and installing LibYAML bindings, use '--without-libyaml':
10'python setup.py --without-libyaml install'.
11
12When LibYAML bindings are installed, you may use fast LibYAML-based
13parser and emitter as follows:
14
15    >>> yaml.load(stream, Loader=yaml.CLoader)
16    >>> yaml.dump(data, Dumper=yaml.CDumper)
17
18If you don't trust the input stream, you should use:
19
20    >>> yaml.safe_load(stream)
21
22PyYAML includes a comprehensive test suite.  To run the tests,
23type 'python setup.py test'.
24
25For more information, check the PyYAML homepage:
26'https://github.com/yaml/pyyaml'.
27
28For PyYAML tutorial and reference, see:
29'http://pyyaml.org/wiki/PyYAMLDocumentation'.
30
31Discuss PyYAML with the maintainers in IRC #pyyaml irc.freenode.net.
32
33You may also use the YAML-Core mailing list:
34'http://lists.sourceforge.net/lists/listinfo/yaml-core'.
35
36Submit bug reports and feature requests to the PyYAML bug tracker:
37'https://github.com/yaml/pyyaml/issues'.
38
39The PyYAML module was written by Kirill Simonov <xi@resolvent.net>.
40It is currently maintained by the YAML and Python communities.
41
42PyYAML is released under the MIT license.
43See the file LICENSE for more details.
44