https://github.com/mgeisler/pygob
Small Python library that can decode the Go gob format
https://github.com/mgeisler/pygob
deserialization gob unmarshalling
Last synced: 9 months ago
JSON representation
Small Python library that can decode the Go gob format
- Host: GitHub
- URL: https://github.com/mgeisler/pygob
- Owner: mgeisler
- License: mit
- Created: 2017-03-16T21:44:28.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-10-31T14:52:27.000Z (over 7 years ago)
- Last Synced: 2025-04-09T10:48:54.359Z (about 1 year ago)
- Topics: deserialization, gob, unmarshalling
- Language: Python
- Homepage:
- Size: 48.8 KB
- Stars: 39
- Watchers: 2
- Forks: 9
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
PyGob
=====
[][travis-ci]
PyGob is a libray for reading and writing [Go gob encoded][gob]
values. The gob format is a binary format used for storing and
transmitting Go data structures. The gob format can encode all Go
types:
* primitive types like `bool`, `int`, `float`, etc
* arrays and slices
* struct types
License
-------
PyGob is licensed under the MIT license.
Author
------
PyGob is maintained by Martin Geisler.
[travis-ci]: https://travis-ci.org/mgeisler/pygob
[gob]: https://golang.org/pkg/encoding/gob/