3
我創建從大熊貓數據幀一msgpack文件,使用下面的代碼:如何解碼Python中的msgpack文件?
df.to_msgpack('ixto.msg')
我已經證實,該文件被保存在目錄中,但因爲我不能用msgpack庫蟒蛇以下代碼:
unp = msgpack.unpackb('ixto.msg')
給我以下錯誤:
AttributeError: 'str' object has no attribute 'read'
這是一個錯字?你錯過了一個尾部的引號:'unp = msgpack.unpackb('ixto.msg')' – EdChum
是的,是的。現在是正確的 – Hugo
另請參見:[如何使用msgpack讀取和寫入?](http://stackoverflow.com/q/43442194/562769) –