1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
## simpleyaml
a Go package to interact with arbitrary YAML, similar as [go-simplejson](https://github.com/bitly/go-simplejson).
[](http://godoc.org/github.com/smallfish/simpleyaml) [](https://travis-ci.org/smallfish/simpleyaml)
#### INSTALL
```bash
$ go get -u -v github.com/smallfish/simpleyaml
```
#### EXAMPLE
```go
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__
|