[ply] Stop double- or triple-printing the helpstring
1 file changed
tree: 1faafba6c6ad6864a21cd924e36a9c5a03302924
  1. cmd/
  2. .gitlab-ci.yml
  3. .travis.yml
  4. bplist.go
  5. bplist_generator.go
  6. bplist_parser.go
  7. bplist_test.go
  8. common_data_for_test.go
  9. decode.go
  10. decode_test.go
  11. doc.go
  12. encode.go
  13. encode_test.go
  14. example_custom_marshaler_test.go
  15. fuzz.go
  16. go16_test.go
  17. go17_test.go
  18. invalid_bplist_test.go
  19. invalid_text_test.go
  20. LICENSE
  21. marshal.go
  22. marshal_test.go
  23. must.go
  24. plist.go
  25. plist_types.go
  26. README.md
  27. text_generator.go
  28. text_parser.go
  29. text_tables.go
  30. text_test.go
  31. typeinfo.go
  32. unmarshal.go
  33. unmarshal_test.go
  34. util.go
  35. xml_generator.go
  36. xml_parser.go
  37. xml_test.go
  38. zerocopy.go
  39. zerocopy_appengine.go
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"})
}