smite:基于ZMQ的简单的类RPC消息库

时间:2024-07-09 11:48:58
【文件属性】:

文件名称:smite:基于ZMQ的简单的类RPC消息库

文件大小:11KB

文件格式:ZIP

更新时间:2024-07-09 11:48:58

Python

重击 基于 ZMQ 的简单的类似 RPC 的消息传递库。 有关更多示例,请查看包含集成测试的 tests.py 文件。 基本示例 import smite host = '127.0.0.1' port = 3000 def echo ( text ): return text servant = smite . Servant ( handlers = { 'echo' : echo }) servant . bind_tcp ( host , port ) servant . run () client = smite . Client () client . connect_tcp ( host , port ) client . send ( msg_name = 'echo' , args = ( 'foobar' ,))


【文件预览】:
smite-master
----smite()
--------utils.py(676B)
--------cli.py(673B)
--------client.py(5KB)
--------__init__.py(105B)
--------servant.py(10KB)
--------proxy.py(3KB)
--------tests.py(11KB)
--------exceptions.py(436B)
----setup.cfg(111B)
----setup.py(669B)
----.gitignore(39B)
----README.md(470B)
----LICENSE.txt(1KB)

网友评论