Bug: 230649493

Clone this repo:
  1. 4658247 Add janitors to the OWNERS file by Sadaf Ebrahimi · 5 weeks ago main master
  2. ff5184c Add pyyaml_filegroup am: f92e531cd0 am: 60ac54af06 am: 98f3d88a92 by Cole Faust · 1 year, 1 month ago android15-automotiveos-dev android15-platform-release android15-prebuilt-test android15-qpr1-release android15-qpr1-s3-release android15-qpr1-s4-release android15-qpr1-s5-release android15-release android15-s1-release android15-security-release android15-tests-dev android15-tests-release aml_cfg_351010000 aml_hef_350921160 aml_hef_351016140 aml_hef_351120040 aml_rkp_350910000 aml_rkp_351011000 aml_tz6_351010000 android-15.0.0_r1 android-15.0.0_r10 android-15.0.0_r11 android-15.0.0_r12 android-15.0.0_r13 android-15.0.0_r2 android-15.0.0_r3 android-15.0.0_r4 android-15.0.0_r5 android-15.0.0_r6 android-15.0.0_r7 android-15.0.0_r8 android-15.0.0_r9 android-cts-15.0_r1 android-cts-15.0_r2 android-platform-15.0.0_r1 android-platform-15.0.0_r2 android-platform-15.0.0_r3 android-platform-15.0.0_r4 android-security-15.0.0_r1 android-security-15.0.0_r2 android-security-15.0.0_r3 android-security-15.0.0_r4 android-vts-15.0_r1 android-vts-15.0_r2
  3. 98f3d88 Add pyyaml_filegroup am: f92e531cd0 am: 60ac54af06 by Cole Faust · 1 year, 1 month ago
  4. 60ac54a Add pyyaml_filegroup am: f92e531cd0 by Cole Faust · 1 year, 1 month ago
  5. f92e531 Add pyyaml_filegroup by Cole Faust · 1 year, 1 month ago

PyYAML

A full-featured YAML processing framework for Python

Installation

To install, type python setup.py install.

By default, the setup.py script checks whether LibYAML is installed and if so, builds and installs LibYAML bindings. To skip the check and force installation of LibYAML bindings, use the option --with-libyaml: python setup.py --with-libyaml install. To disable the check and skip building and installing LibYAML bindings, use --without-libyaml: python setup.py --without-libyaml install.

When LibYAML bindings are installed, you may use fast LibYAML-based parser and emitter as follows:

>>> yaml.load(stream, Loader=yaml.CLoader)
>>> yaml.dump(data, Dumper=yaml.CDumper)

If you don't trust the input YAML stream, you should use:

>>> yaml.safe_load(stream)

Testing

PyYAML includes a comprehensive test suite. To run the tests, type python setup.py test.

Further Information

License

The PyYAML module was written by Kirill Simonov [email protected]. It is currently maintained by the YAML and Python communities.

PyYAML is released under the MIT license.

See the file LICENSE for more details.