github.com/smallfish/simpleyaml

a Go package to interact with arbitrary YAML


License
BSD-3-Clause
Install
go get github.com/smallfish/simpleyaml

Documentation

simpleyaml

a Go package to interact with arbitrary YAML, similar as go-simplejson.

GoDoc Build Status

INSTALL

$ go get -u -v github.com/smallfish/simpleyaml

EXAMPLE

var data = []byte(`
name: smallfish
age: 99
float: 3.14159
bool: true
emails:
   - xxx@xx.com
   - yyy@yy.com
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