你需要有最新版本msgpack-python
。 v0.4.7
不起作用。 (目前必須從主分支安裝)。
import msgpack
from collections import namedtuple
User = namedtuple('User', ['name', 'profile'])
Profile = namedtuple('Profile', ['avatar'])
def ext_pack(x):
if isinstance(x, User):
return msgpack.ExtType(1, msgpack.packb([x[0], x[1]], default=ext_pack, strict_types=True))
elif isinstance(x, Profile):
return msgpack.ExtType(2, msgpack.packb(x[0], default=ext_pack, strict_types=True))
return x
def ext_unpack(code, data):
if code == 1:
name, profile = msgpack.unpackb(data, ext_hook=ext_unpack)
return User(name, profile)
elif code == 2:
avatar = msgpack.unpackb(data, ext_hook=ext_unpack)
return Profile(avatar)
return msgpack.ExtType(code, data)
x = User("me", Profile(234))
s = msgpack.packb([x, [1, x]], default=ext_pack, strict_types=True)
msgpack.unpackb(s, ext_hook=ext_unpack)
>>> [User(name='me', profile=Profile(avatar=234)),
[1, User(name='me', profile=Profile(avatar=234))]]
在這裏,我們分別標記User
,Profile
如類型代碼1,2。或者,您可以將所有namedtuple
視爲相同類型的代碼,並將實際類型存儲在數據字段中。