Skip to main content
Version: 0.8

yaml

encode

encode(
data: any,
sort_keys: bool = False,
ignore_private: bool = False,
ignore_none: bool = False
) -> str

Serialize a KCL object data to a YAML formatted str.

encode_all

encode(
data: [any],
sort_keys: bool = False,
ignore_private: bool = False,
ignore_none: bool = False
) -> str

Serialize a sequence of KCL objects into a YAML stream str.

decode

decode(value: str) -> any

Deserialize value (a string instance containing a YAML document) to a KCL object.

decode_all

decode_all(value: str) -> [any]

Parse all YAML documents in a stream and produce corresponding KCL objects.

dump_to_file

dump_to_file(
data: any,
filename: str,
ignore_private: bool = False,
ignore_none: bool = False
) -> None

Serialize a KCL object data to a YAML formatted str and write it into the file filename.

validate

validate(value: str) -> bool

Validate whether the given string is a valid YAML or YAML stream document.