Filippo Valsorda cbca29dc62 Initial commit and macOS install před 6 roky
..
.gitlab-ci.yml cbca29dc62 Initial commit and macOS install před 6 roky
LICENSE cbca29dc62 Initial commit and macOS install před 6 roky
README.md cbca29dc62 Initial commit and macOS install před 6 roky
bplist.go cbca29dc62 Initial commit and macOS install před 6 roky
bplist_generator.go cbca29dc62 Initial commit and macOS install před 6 roky
bplist_parser.go cbca29dc62 Initial commit and macOS install před 6 roky
decode.go cbca29dc62 Initial commit and macOS install před 6 roky
doc.go cbca29dc62 Initial commit and macOS install před 6 roky
encode.go cbca29dc62 Initial commit and macOS install před 6 roky
fuzz.go cbca29dc62 Initial commit and macOS install před 6 roky
marshal.go cbca29dc62 Initial commit and macOS install před 6 roky
must.go cbca29dc62 Initial commit and macOS install před 6 roky
plist.go cbca29dc62 Initial commit and macOS install před 6 roky
plist_types.go cbca29dc62 Initial commit and macOS install před 6 roky
text_generator.go cbca29dc62 Initial commit and macOS install před 6 roky
text_parser.go cbca29dc62 Initial commit and macOS install před 6 roky
text_tables.go cbca29dc62 Initial commit and macOS install před 6 roky
typeinfo.go cbca29dc62 Initial commit and macOS install před 6 roky
unmarshal.go cbca29dc62 Initial commit and macOS install před 6 roky
util.go cbca29dc62 Initial commit and macOS install před 6 roky
xml_generator.go cbca29dc62 Initial commit and macOS install před 6 roky
xml_parser.go cbca29dc62 Initial commit and macOS install před 6 roky
zerocopy.go cbca29dc62 Initial commit and macOS install před 6 roky
zerocopy_appengine.go cbca29dc62 Initial commit and macOS install před 6 roky

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