I've created a msgpack file from a Pandas Dataframe, using the following code:
df.to_msgpack('ixto.msg')
I've confirmed that the file is saved in the directory, but I can't use msgpack library for python since the following code:
unp = msgpack.unpackb('ixto.msg')
gives me the following error:
AttributeError: 'str' object has no attribute 'read'