mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-03-20 05:27:56 +01:00
12 lines
196 B
Python
12 lines
196 B
Python
# coding: utf-8
|
|
from msgpack.__version__ import *
|
|
from msgpack._msgpack import *
|
|
|
|
# alias for compatibility to simplejson/marshal/pickle.
|
|
load = unpack
|
|
loads = unpackb
|
|
|
|
dump = pack
|
|
dumps = packb
|
|
|