blob: baed1f6ae357ca8bff4002125e5b4c3c6c9f46e9 (
plain) (
blame)
1
2
3
4
5
6
7
|
MessagePack is an efficient binary serialization format. It lets you exchange
data among multiple languages like JSON. But it's faster and smaller. Small
integers are encoded into a single byte, and typical short strings require only
one extra byte in addition to the strings themselves.
WWW: https://msgpack.org/
WWW: https://github.com/msgpack/msgpack-python
|