python下grpc與protobuf的編寫使用示例
1. python下protobuf使用
1.1 安裝protobuf
pip3.6 install grpcio #安裝grpc pip3.6 install grpcio-tools #安裝grpc tools
1.2 protobuf3定義格式
新建protobuf文件名:hello.proto
syntax = "proto3";
message HelloRequest {
string name = 1;
}
1.3 生成proto的python文件
cd hello.proto文件路徑下 命令:python3.6 -m grpc_tools.protoc --python_out=. --grpc_python_out=. -I. hello.proto 注意:只有python生成兩個(gè)文件 命令解釋: python3.6 -m grpc_tools.protoc:實(shí)際需要使用grpc_tools.protoc這里面的命令 --python_out=. :生成的python文件放在當(dāng)前路徑下,這是給rpc用的文件 --grpc_python_out=. :生成的python文件放在當(dāng)前路徑下,這是給grpc用的文件 -I.:指import,當(dāng)前目錄下找hello.proto文件

1.4 對比一下protobuf生成的效果
res.SerializeToString() # 序列化二進(jìn)制
res2.ParseFromString(res_str) # 反序列化二進(jìn)制
import json
from python_grpc.proto import hello_pb2
def main():
res = hello_pb2.HelloRequest()
res.name = "jeff"
res_str = res.SerializeToString() # 序列化二進(jìn)制
print(res_str) # b'\n\x04jeff'
print(len((res_str))) # 6,和json對比,josn長度為:16
res2 = hello_pb2.HelloRequest()
res2.ParseFromString(res_str) # 反序列化二進(jìn)制
print(res2.name) # jeff
res_json = {
"name":"jeff"
}
print(len(json.dumps(res_json))) # 16,json和proto壓縮對比,proto壓縮后:6
if __name__ == '__main__':
main()
2.python下grpc使用
2.1編寫hello.proto文件
syntax = "proto3";
package services;
option go_package = "./;proto";
service Greeter {
// 定義SayHello方法
rpc SayHello (HelloRequest) returns (HelloReply);
}
message HelloRequest {
string name = 1; //編號
}
message HelloReply {
string message = 1; //編號
}
2.2 生成proto的python文件
cd hello.proto文件路徑下 命令:python3.6 -m grpc_tools.protoc --python_out=. --grpc_python_out=. -I. hello.proto 注意:只有python生成兩個(gè)文件 命令解釋: python3.6 -m grpc_tools.protoc:實(shí)際需要使用grpc_tools.protoc這里面的命令 --python_out=. :生成的python文件放在當(dāng)前路徑下,這是給rpc用的文件 --grpc_python_out=. :生成的python文件放在當(dāng)前路徑下,這是給grpc用的文件 -I.:指import,當(dāng)前目錄下找hello.proto文件 注意:生成的*_grpc.py文件的導(dǎo)包需要修改,否則報(bào)錯(cuò):要讓python找到hello_pb2 import hello_pb2 as hello__pb2 改為: from python_grpc.proto import hello_pb2 as hello__pb2
2.3 編寫server端
from concurrent import futures
import grpc
from python_grpc.proto import hello_pb2, hello_pb2_grpc
# 業(yè)務(wù)處理
class Greeter(hello_pb2_grpc.GreeterServicer):
def SayHello(self, request, context):
return hello_pb2.HelloReply(message=f"你好,{request.name}")
# 啟動(dòng)
def start():
# 1.實(shí)例化server
Thread = futures.ThreadPoolExecutor(max_workers=10) ## 設(shè)置線程池,并發(fā)大小
server = grpc.server(Thread)
# 2.注冊邏輯到server中
hello_pb2_grpc.add_GreeterServicer_to_server(Greeter(), server)
# 3.啟動(dòng)server
server.add_insecure_port("127.0.0.1:8888")
server.start()
server.wait_for_termination()
if __name__ == '__main__':
start()
2.4 編寫cilent端
import grpc
from python_grpc.proto import hello_pb2, hello_pb2_grpc
# rpc調(diào)用
def main():
# 這里使用with,調(diào)用完會(huì)自動(dòng)關(guān)閉。優(yōu)雅寫法
with grpc.insecure_channel("127.0.0.1:8888") as channel:
stub = hello_pb2_grpc.GreeterStub(channel)
# 調(diào)用定義的SayHello方法
rep = stub.SayHello(
hello_pb2.HelloRequest(name="jeff") # 傳遞定義的HelloRequest類型參數(shù)
)
return rep
# 業(yè)務(wù)代碼
def start():
rep = main()
print(rep.message) # 你好,jeff
if __name__ == '__main__':
start()以上就是python下grpc與protobuf的編寫使用的詳細(xì)內(nèi)容,更多關(guān)于python grpc與protobuf編寫使用的資料請關(guān)注腳本之家其它相關(guān)文章!
相關(guān)文章
Python實(shí)現(xiàn)監(jiān)控鍵盤鼠標(biāo)操作示例【基于pyHook與pythoncom模塊】
這篇文章主要介紹了Python實(shí)現(xiàn)監(jiān)控鍵盤鼠標(biāo)操作,結(jié)合實(shí)例形式分析了Python基于pyHook與pythoncom模塊的鍵盤、鼠標(biāo)事件響應(yīng)及日志文件操作相關(guān)實(shí)現(xiàn)技巧,需要的朋友可以參考下2018-09-09
Python請求庫發(fā)送HTTP POST請求的示例代碼
這段代碼使用了Python的requests庫來發(fā)送HTTP POST請求,向本地服務(wù)器的API發(fā)送數(shù)據(jù),并處理響應(yīng),一步步解釋這個(gè)代碼2024-08-08
python實(shí)現(xiàn)一個(gè)點(diǎn)繞另一個(gè)點(diǎn)旋轉(zhuǎn)后的坐標(biāo)
今天小編就為大家分享一篇python實(shí)現(xiàn)一個(gè)點(diǎn)繞另一個(gè)點(diǎn)旋轉(zhuǎn)后的坐標(biāo),具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧2019-12-12
刪除pycharm鼠標(biāo)右鍵快捷鍵打開項(xiàng)目的操作
這篇文章主要介紹了刪除pycharm鼠標(biāo)右鍵快捷鍵打開項(xiàng)目的操作,具有很好的參考價(jià)值,希望對大家有所幫助。一起跟隨小編過來看看吧2021-01-01
從入門到精通:Python項(xiàng)目打包與setup.py實(shí)戰(zhàn)指南
想要將你的Python項(xiàng)目分享給世界嗎?本指南將帶你從零開始,一步步學(xué)習(xí)如何打包你的Python項(xiàng)目,并創(chuàng)建一個(gè)專業(yè)的setup.py文件,我們將分享實(shí)用的技巧和最佳實(shí)踐,幫助你的項(xiàng)目在Python社區(qū)中脫穎而出,跟著我們的步伐,讓你的項(xiàng)目打包變得輕松有趣!2024-03-03
Python?ModuleNotFoundError:?No?module?named?‘xxx‘可能的解決方
本文主要介紹了Python?ModuleNotFoundError:?No?module?named?‘xxx‘可能的解決方案大全,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧Chat?Gpt<BR>2023-07-07

