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