msgpack-python/msgpack/__init__.py

12 lines
196 B
Python
Raw Normal View History

# coding: utf-8
2010-09-02 09:54:38 +09:00
from msgpack.__version__ import *
2010-09-02 01:29:57 +09:00
from msgpack._msgpack import *
# alias for compatibility to simplejson/marshal/pickle.
load = unpack
loads = unpackb
dump = pack
dumps = packb