cki.cki_tools.yaml

CLI tools that implements YAML operations missing in shyaml
$ python3 -m cki.cki_tools.yaml --help
usage: yaml.py [-h] {set-value} key value

Currently, only set-value is implemented. The value is parsed as YAML.

Example:

$ python -m cki.cki_tools.yaml set-value foo.1 'qux: true' <<< 'foo: [bar, baz]'
foo:
- bar
- qux: true