我正在学习grpc,但遇到了一个问题。
- 创建如下所示的proto文件(test.proto(
- 运行
python3 -m grpc_tools.protoc -I ./protos --python_out=. ./protos/test.proto
期望有两个文件:CCD_ 2和CCD_ 3
但只有test_pb2.py
我不确定我错过了哪一步。
syntax = "proto3";
service PingPongService{
rpc ping(Ping) returns (Pong){}
}
message Ping{
int32 count = 1;
}
message Pong{
int32 count = 2;
}
似乎需要添加以下arg
--grpc_python_out=.