» gRPC快速入门:Python » 5. 创建 client » 5.1 创建 stub

创建 stub

你可以在 examples/python/route_guide/route_guide_client.py 中看到完整的示例客户端代码。

要调用服务方法,我们首先需要创建一个 stub

我们实例化 route_guide_pb2_grpc 模块的 RouteGuideStub 类。当然,它也是由我们的 .proto 文件生成。

channel = grpc.insecure_channel('localhost:50051')
stub = route_guide_pb2_grpc.RouteGuideStub(channel)