a Go package to interact with arbitrary YAML, similar as go-simplejson.
$ go get -u -v github.com/smallfish/simpleyaml
var data = []byte(`
name: smallfish
age: 99
float: 3.14159
bool: true
emails:
- [email protected]
- [email protected]
bb:
cc:
dd:
- 111
- 222
- 333
ee: aaa
`)
y, err := NewYaml(data)
if err != nil {
// ERROR
}
name, err := y.Get("name").String()
if err != nil {
// ERROR
}
fmt.Println("name:", name)
// y.Get("age").Int()
// y.Get("float").Float()
// y.Get("bool").Bool()
// y.Get("bb").Get("cc").Get("ee").String()
// y.Get("bb").Get("cc").Get("ee").GetIndex(1).Int()
// y.GetPath("bb", "cc", "ee").String()
END