I need to parse a protocol buffer send via a post using bottle.
How do I get PB to parse?
I tried the following but did nt work:
@post('/test')
def test():
br = test_pb2.MyRequest()
br.ParseFromString(request.files.data)
|
|
|
The raw body data is available through |
|||
|
|