根据这个http://www.grpc.io/docs/tutorials/basic/python.html#creating-the-server和这里的例子https://github.com/grpc/grpc/tree/v1.0.0/ examples/python/route_guide,当我生成我的_pb2.py
文件时,应该创建几个名为*Stub
并且*Servicer
应该创建的类。但是,我生成的_pb2.py
文件不包含这样的内容。
这就是我生成_pb2.py
文件的方式:
protoc --proto_path=.venv/lib/python3.5/site-packages/grpc/tools/_proto/ --proto_path=. --python_out=voyager/ voyager.proto
proto3 有什么特别之处,意味着这些类没有生成吗?还是protoc
我丢失的旗帜?我似乎无法弄清楚如何创建 gRPC 服务器。