Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ボトルを使用して投稿を介して送信されたプロトコルバッファを解析する必要があります。
PBを解析するにはどうすればよいですか?
私は次のことを試しましたが、うまくいきませんでした:
@post('/test') def test(): br = test_pb2.MyRequest() br.ParseFromString(request.files.data)
生の本体データはrequest.body、ファイルのようなオブジェクト (サイズに応じて、実際のファイルまたは BytesIO のいずれか) を介して利用できます。request.body.read()あなたのために仕事をするべきです。
request.body
request.body.read()