Bug: 230649493

Clone this repo:
  1. cf40ad6 Add janitors to the OWNERS file am: 4658247c15 by Sadaf Ebrahimi · 7 months ago main master
  2. 4658247 Add janitors to the OWNERS file by Sadaf Ebrahimi · 7 months ago
  3. ff5184c Add pyyaml_filegroup am: f92e531cd0 am: 60ac54af06 am: 98f3d88a92 by Cole Faust · 1 year, 7 months ago android15-automotiveos-dev android15-automotiveos-release android15-d4-release android15-platform-release android15-prebuilt-test android15-qpr1-release android15-qpr1-s3-release android15-qpr1-s4-release android15-qpr1-s5-release android15-qpr2-release android15-qpr2-s1-release android15-qpr2-s10-release android15-qpr2-s2-release android15-qpr2-s3-release android15-qpr2-s4-release android15-qpr2-s5-release android15-qpr2-s6-release android15-qpr2-s7-release android15-qpr2-s8-release android15-qpr2-s9-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_hef_351314220 aml_hef_351420080 aml_rkp_350910000 aml_rkp_351011000 aml_rkp_351310000 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_r14 android-15.0.0_r15 android-15.0.0_r16 android-15.0.0_r17 android-15.0.0_r2 android-15.0.0_r20 android-15.0.0_r21 android-15.0.0_r22 android-15.0.0_r23 android-15.0.0_r24 android-15.0.0_r25 android-15.0.0_r26 android-15.0.0_r27 android-15.0.0_r28 android-15.0.0_r29 android-15.0.0_r3 android-15.0.0_r30 android-15.0.0_r31 android-15.0.0_r32 android-15.0.0_r33 android-15.0.0_r34 android-15.0.0_r35 android-15.0.0_r36 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-automotiveos-15.0.0_lts1 android-automotiveos-15.0.0_lts2 android-cts-15.0_r1 android-cts-15.0_r2 android-cts-15.0_r3 android-cts-15.0_r4 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-platform-15.0.0_r5 android-platform-15.0.0_r6 android-platform-15.0.0_r7 android-platform-15.0.0_r8 android-platform-15.0.0_r9 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-security-15.0.0_r5 android-security-15.0.0_r6 android-security-15.0.0_r7 android-security-15.0.0_r8 android-security-15.0.0_r9 android-vts-15.0_r1 android-vts-15.0_r2 android-vts-15.0_r3 android-vts-15.0_r4
  4. 98f3d88 Add pyyaml_filegroup am: f92e531cd0 am: 60ac54af06 by Cole Faust · 1 year, 7 months ago
  5. 60ac54a Add pyyaml_filegroup am: f92e531cd0 by Cole Faust · 1 year, 7 months 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 xi@resolvent.net. It is currently maintained by the YAML and Python communities.

PyYAML is released under the MIT license.

See the file LICENSE for more details.