yaml
thin wrapper functions and information for yaml
This section describes the thin wrapper api functions for processing YAML data.
The thin api functions used for the maci library that enable YAML functionality, use and wrap the PyYAML framework installed as a dependency from pypi for its underlying functionality.
Loading note: Uses the "safe_load" and "safe_load_all" methods only to protect from untrusted input.
Dumping note: Uses the "safe_dump" and "safe_dump_all" methods, which only support standard YAML tags and cannot represent an arbitrary Python object
For more information on PyYAML, visit: https://pypi.org/project/PyYAML/
Last updated