dump#
- astropy.io.misc.yaml.dump(data, stream=None, **kwargs)[source]#
Serialize a Python object into a YAML stream using the AstropyDumper class. If stream is None, return the produced string instead.
- Parameters:
- data
object
Object to serialize to YAML
- streamfile-like object, optional
YAML output (if not supplied a string is returned)
- **kwargs
Other keyword arguments that get passed to yaml.dump()
- data
- Returns: