Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
.github/workflows/ | 12-May-2024 | - | 251 | 215 | ||
examples/ | 12-May-2024 | - | 966 | 718 | ||
lib/ | 12-May-2024 | - | 5,941 | 4,468 | ||
packaging/build/ | 12-May-2024 | - | 49 | 33 | ||
tests/ | 12-May-2024 | - | 6,917 | 5,904 | ||
yaml/ | 12-May-2024 | - | 1,670 | 1,585 | ||
.gitignore | D | 12-May-2024 | 199 | 20 | 15 | |
CHANGES | D | 12-May-2024 | 11.9 KiB | 268 | 212 | |
LICENSE | D | 12-May-2024 | 1.1 KiB | 21 | 17 | |
MANIFEST.in | D | 12-May-2024 | 263 | 8 | 7 | |
Makefile | D | 12-May-2024 | 989 | 52 | 36 | |
OAT.xml | D | 12-May-2024 | 8 KiB | 101 | 54 | |
README.OpenSource | D | 12-May-2024 | 273 | 12 | 11 | |
README.md | D | 12-May-2024 | 1.5 KiB | 54 | 34 | |
announcement.msg | D | 12-May-2024 | 3.7 KiB | 114 | 82 | |
bundle.json | D | 12-May-2024 | 708 | 31 | 30 | |
pyproject.toml | D | 12-May-2024 | 100 | 4 | 3 | |
setup.py | D | 12-May-2024 | 10.4 KiB | 314 | 257 | |
tox.ini | D | 12-May-2024 | 141 | 10 | 8 |
README.OpenSource
1[ 2 { 3 "Name": "PyYAML", 4 "License": "MIT License", 5 "License File": "LICENSE", 6 "Version Number": "6.0", 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 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