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.
 
 
 
root beccf3fe43 init 7 years ago
..
BUILD.bazel init 7 years ago
LICENSE init 7 years ago
README.md init 7 years ago
bplist.go init 7 years ago
bplist_generator.go init 7 years ago
bplist_parser.go init 7 years ago
decode.go init 7 years ago
doc.go init 7 years ago
encode.go init 7 years ago
fuzz.go init 7 years ago
marshal.go init 7 years ago
must.go init 7 years ago
plist.go init 7 years ago
plist_types.go init 7 years ago
text_generator.go init 7 years ago
text_parser.go init 7 years ago
text_tables.go init 7 years ago
typeinfo.go init 7 years ago
unmarshal.go init 7 years ago
util.go init 7 years ago
xml_generator.go init 7 years ago
xml_parser.go init 7 years ago
zerocopy.go init 7 years ago
zerocopy_appengine.go init 7 years ago

README.md

plist - A pure Go property list transcoder coverage report

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"})
}