I have a C ++ application that serializes a structure using Google Protobuf like this
int len = mdd.ByteSize(); char* buf = (char *)malloc(len); mdd.SerializeToArray(buf, len);
I want to non-serialize this from python:
import marketdata_pb2 ... md = marketdata_pb2.MarketDataDepth()
source share