Categorygithub.com/seanhoughton/gopymarshal/v2
package
2.0.6
Repository: https://github.com/seanhoughton/gopymarshal.git
Documentation: pkg.go.dev

# README

go-pymarshal

Marshal and unmarshall data between golang and python

Versions

v2.0.5

  • Switch interface to io.Reader to allow clients to use any data source
  • Add Go module support

0.1

  • unmarshal python marshaled data
  • marshal golang data as python marshaled data

Notes

  • for unmarshal, supported types are listed below:
    • None
    • int
    • string
    • unicode
    • float
    • list
    • dict
  • for marshal, supported types are listed below:
    • nil
    • int32
    • float
    • string
    • slice (with the types above)
    • map (with the types above)