91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python使用grpc并打包成python模塊的方法

發布時間:2021-08-21 22:19:52 來源:億速云 閱讀:211 作者:chen 欄目:編程語言

本篇內容介紹了“python使用grpc并打包成python模塊的方法”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

  • xmlrpc也是可行的方案,也相對更加簡單

一、環境
python3.6
二、安裝模塊

pip3 install grpcio
pip3 install protobuf
pip3 install grpcio-tools

三、準備grpc配置文件grpcdatabase.proto
目錄結構:
python使用grpc并打包成python模塊的方法
內容如下:

syntax = "proto3";
package grpcServer;
service Greeter {
    rpc GetContent (Request) returns (Return) {} //定義要調用的函數(GetContent)+(Request)接受的參數+(Return)返回的參數
}

message Request {       //傳參數據類型
    string content = 1;//文本
    int32 code=2;      //返回狀態0success;1failed
}

message Return {       //返回數據類型
    string message = 1;//文本
    int32 code=2;      //返回狀態0success;1failed
}
//執行命令+安裝步驟
//python3 -m grpc_tools.protoc -I. --python_out=grpc_base_models/ --grpc_python_out=grpc_base_models/ grpcdatabase.proto

編譯:生成grpcatabase_pb2.py  grpcdatabase_pb2_grpc.py文件

python3 -m grpc_tools.protoc -I. --python_out=grpc_base_models/ --grpc_python_out=grpc_base_models/ grpcdatabase.proto

python使用grpc并打包成python模塊的方法
編寫服務端代碼:

# -*- coding: utf-8 -*-
# @author: chenhuachao
# @time: 2019/3/7
# Servers.py
import sys
sys.path.append('grpc_base_models')
import grpc
import time
from concurrent import futures
import grpcdatabase_pb2
import grpcdatabase_pb2_grpc
# from grpc_base_models import grpcdatabase_pb2
# from grpc_base_models import grpcdatabase_pb2_grpc

_SLEEP_TIME = 60
_HOST = "0.0.0.0"
_PORT = "19999"

class RpcServer(grpcdatabase_pb2_grpc.GreeterServicer):
    def GetContent(self, request, context):
        '''
        獲取文章摘要
        :param request:
        :param context:
        :return:
        '''
        try:
            _content = request.content
            code = 0
        except Exception as e:
            _content = str(e)
            code=1
        return grpcdatabase_pb2.Return(message=_content,code=code)

def server():
    if sys.argv.__len__()>=2:
        _PORT = sys.argv[1]
    else:
        _PORT = "19999"
    grpcServer = grpc.server(futures.ThreadPoolExecutor(max_workers=10))
    grpcdatabase_pb2_grpc.add_GreeterServicer_to_server(RpcServer(), grpcServer)
    grpcServer.add_insecure_port("{0}:{1}".format(_HOST, _PORT))
    grpcServer.start()
    try:
        while True:
            time.sleep(_SLEEP_TIME)
    except KeyboardInterrupt:
        grpcServer.stop(0)

if __name__ == '__main__':
    server()

編寫客戶端代碼:

# -*- coding: utf-8 -*-
# @author: chenhuachao
# @time: 2019/3/7
# Client.py
import sys
import grpc
sys.path.append('grpc_base_models')
import grpcdatabase_pb2_grpc
import grpcdatabase_pb2
# from grpc_base_models import grpcdatabase_pb2_grpc
# from grpc_base_models import grpcdatabase_pb2

# _HOST = '192.168.3.191'
_HOST = '127.0.0.1'
_PORT = '19999'

def RpcClient(funcname,content):
    '''
    rpc客戶端程序
    :param funcname: 可用funcname為下面兩個
        >>> GetContent  獲取摘要, 參數:content='文本'
        *** 上面兩個函數均返回message屬性和code(1:failed 0:success)屬性
        >>> 返回值:response.message   response.code
    :return:
    '''
    with grpc.insecure_channel("{0}:{1}".format(_HOST, _PORT)) as channel:
        client = grpcdatabase_pb2_grpc.GreeterStub(channel=channel)
        if hasattr(client,funcname):
            response = getattr(client,funcname)(grpcdatabase_pb2.Request(content=content))
        else:
            raise Exception(u"函數名錯誤")
    print("message=" , response.message)
    print( "code=",response.code)
if __name__ == '__main__':
    text = u'''
    測試的文本
    '''
    RpcClient('GetContent',text)

分別運行:Server.py  和Client.py 查看結果
python使用grpc并打包成python模塊的方法

上面服務端代碼每次使用,都要依賴grpcdatabase_pb2*.py這兩個文件,因此,我們可以打包為python模塊。更加方便使用

打包

添加setup.py文件在根目錄下:結構圖
python使用grpc并打包成python模塊的方法
setup.py文件內容如下

# -*- coding: utf-8 -*-
# @author: chenhuachao
# @time: 2019/3/8
# setup.py

from setuptools import setup,find_packages
setup(
    name = "grpc_base_models",
    version = "0.0.1",
    keywords = ("pip", "pygrpc", "company", "chenhuachao"),
    description = "python版本的grpc公用模塊,個人項目專用,僅供參考",
    long_description="grpc server for python",
    license="MIT Licence",
    url="https://github.com/leizhu900516",
    author="chenhuachao",
    author_email="leizhu900516@163.com",
    packages = find_packages(),
    install_requires = [
        'grpcio==1.19.0',
        'grpcio-tools==1.19.0',
        'protobuf==3.7.0',
    ]
)

打包:
python3 setup.py sdist     如下圖:
python使用grpc并打包成python模塊的方法
安裝:pip install dist/grpc_base_models-0.0.1.tar.gz
即可在python腳本中使用
引用即可:

from grpc_base_models import grpcdatabase_pb2_grpc
from grpc_base_models import grpcdatabase_pb2

“python使用grpc并打包成python模塊的方法”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

吉木萨尔县| 江口县| 临夏县| 南澳县| 鄂托克旗| 石城县| 丰宁| 厦门市| 仁化县| 潼关县| 闻喜县| 许昌市| 宝兴县| 尖扎县| 南丹县| 电白县| 金湖县| 平山县| 碌曲县| 阳春市| 武义县| 射洪县| 盖州市| 玛多县| 和林格尔县| 石景山区| 汝南县| 略阳县| 东辽县| 竹山县| 河西区| 天津市| 颍上县| 嘉荫县| 永泰县| 崇明县| 鄢陵县| 岳西县| 开化县| 江山市| 佛学|