5

我有一个 C++ 应用程序,它像这样使用 Google Protobuf 序列化一个结构

int len = mdd.ByteSize();
char* buf = (char *)malloc(len);
mdd.SerializeToArray(buf, len);

我想从 python 中反序列化:

import  marketdata_pb2
...
md = marketdata_pb2.MarketDataDepth()
#what goes here? I don't see a marketdata_pb2.parsefromarray()
4

1 回答 1

4

你正在寻找md.ParseFromString(some_string_of_bytes). 在 Python 2.x 中,“一些字节串”是一个str.

https://developers.google.com/protocol-buffers/docs/pythontutorial

于 2012-09-17T04:29:03.003 回答