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
- streampython:file-like object, optional
YAML output (if not supplied a string is returned)
- **kwargs
Other keyword arguments that get passed to yaml.dump()
- data
- Returns:
- out
python:str
orpython:None
If no
stream
is supplied then YAML output is returned as str
- out