qrpc:Python RPC框架

时间:2024-06-07 14:06:23
【文件属性】:

文件名称:qrpc:Python RPC框架

文件大小:14KB

文件格式:ZIP

更新时间:2024-06-07 14:06:23

Python

特征 轻松注册方法 自定义例外和选项 包括大量的测试助手 安装 在大多数系统上,这是一个问题 python setup.py install 快速开始 一个简单的例子 这是一个非常简单的示例,说明如何使用QRpc创建自己的API 服务器 from qrpc . server import Server server = Server () @ server . registe ( "service1/hello" ) def hello ( name = None ): if name : return "hello " + name return "hello anonymous" @ server . registe ( "service1/add" ) def add ( x , y ): return x + y server . run


【文件预览】:
qrpc-master
----.gitignore(780B)
----README.md(3KB)
----tests()
--------test_exception.py(2KB)
--------__init__.py(72B)
--------test_normal.py(972B)
--------test_middleware.py(657B)
----qrpc()
--------scheduler.py(1KB)
--------server.py(2KB)
--------exceptions.py(880B)
--------job.py(194B)
--------middleware()
--------request.py(409B)
--------result.py(1KB)
--------__init__.py(93B)
--------methods.py(2KB)
--------response.py(2KB)
--------handler.py(2KB)
--------client.py(3KB)
----LICENSE.txt(1KB)
----setup.py(1KB)

网友评论