You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
packagr-io-beta
b6ca94f786
|
4 years ago | |
---|---|---|
.. | ||
.gitlab-ci.yml | 4 years ago | |
LICENSE | 4 years ago | |
README.md | 4 years ago | |
bplist.go | 4 years ago | |
bplist_generator.go | 4 years ago | |
bplist_parser.go | 4 years ago | |
decode.go | 4 years ago | |
doc.go | 4 years ago | |
encode.go | 4 years ago | |
fuzz.go | 4 years ago | |
go.mod | 4 years ago | |
marshal.go | 4 years ago | |
must.go | 4 years ago | |
plist.go | 4 years ago | |
plist_types.go | 4 years ago | |
text_generator.go | 4 years ago | |
text_parser.go | 4 years ago | |
text_tables.go | 4 years ago | |
typeinfo.go | 4 years ago | |
unmarshal.go | 4 years ago | |
util.go | 4 years ago | |
xml_generator.go | 4 years ago | |
xml_parser.go | 4 years ago | |
zerocopy.go | 4 years ago | |
zerocopy_appengine.go | 4 years ago |
README.md
plist - A pure Go property list transcoder
INSTALL
$ go get howett.net/plist
FEATURES
- Supports encoding/decoding property lists (Apple XML, Apple Binary, OpenStep and GNUStep) from/to arbitrary Go types
USE
package main
import (
"howett.net/plist"
"os"
)
func main() {
encoder := plist.NewEncoder(os.Stdout)
encoder.Encode(map[string]string{"hello": "world"})
}