1 Star 0 Fork 1

Sanmejie/grpctest

forked from zhufeng/grpctest 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
client.py 426 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhufeng 提交于 2017-06-12 11:05 . first commit
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import grpc
from protos import helloworld_pb2
from protos import helloworld_pb2_grpc
def main():
channel = grpc.insecure_channel('localhost:50051')
stub = helloworld_pb2_grpc.GreetingStub(channel)
response = stub.CreateUser(helloworld_pb2.UserRequest(name='zf'))
print 'Response: {0}'.format(response)
if __name__ == '__main__':
main()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/sanmejie/grpctest.git
git@gitee.com:sanmejie/grpctest.git
sanmejie
grpctest
grpctest
master

搜索帮助