mirror of
https://github.com/mcuadros/ascode
synced 2024-11-23 01:11:59 +01:00
529 B
529 B
title |
---|
encoding/yaml |
yaml provides functions for working with yaml data
Functions
def dumps
dumps(obj) string
serialize obj to a yaml string
parameters:
name | type | description |
---|---|---|
'obj' | 'object' | input object |
def loads
loads(source) object
read a source yaml string to a starlark object
parameters:
name | type | description |
---|---|---|
'source' | 'string' | input string of yaml data |