معرفی شرکت ها


aio-msgpack-rpc-0.2.0


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

asyncio MsgPack RPC
ویژگی مقدار
سیستم عامل -
نام فایل aio-msgpack-rpc-0.2.0
نام aio-msgpack-rpc
نسخه کتابخانه 0.2.0
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Robert Mcgregor
ایمیل نویسنده rmcgregor1990@gmail.com
آدرس صفحه اصلی https://gitlab.com/rmcgregor/aio-msgpack-rpc
آدرس اینترنتی https://pypi.org/project/aio-msgpack-rpc/
مجوز -
# aio-msgpack-rpc [![pipeline status](https://gitlab.com/rmcgregor/aio-msgpack-rpc/badges/master/pipeline.svg)](https://gitlab.com/rmcgregor/aio-msgpack-rpc/commits/master) [![coverage report](https://gitlab.com/rmcgregor/aio-msgpack-rpc/badges/master/coverage.svg)](https://rmcgregor.gitlab.io/aio-msgpack-rpc/coverage) Pure asyncio implementation of the [MsgPack RPC](https://github.com/msgpack-rpc/msgpack-rpc/blob/master/spec.md). Requires Python >= 3.6. Uses [streams](https://docs.python.org/3/library/asyncio-stream.html) API provided by the ```asyncio``` standard library. Just a simple implementation of the RPC layer. ## Installation ``` pip install aio-msgpack-rpc ``` ## Example ### Server ```python import asyncio import aio_msgpack_rpc # handlers can be defined on a class # they can either be async or plain functions class MyServicer: async def sum(self, x, y): print(f"sum: {x}, {y}") return x + y def notification(self, msg): print(f"notification: {msg}") async def main(): try: server = await asyncio.start_server(aio_msgpack_rpc.Server(MyServicer()), host="localhost", port=18002) while True: await asyncio.sleep(0.1) finally: server.close() try: asyncio.get_event_loop().run_until_complete(main()) except KeyboardInterrupt: pass ``` ### Client ```python import asyncio import aio_msgpack_rpc async def main(): client = aio_msgpack_rpc.Client(*await asyncio.open_connection("localhost", 18002)) # blocking rpc calls result = await client.call("sum", 1, 2) assert result == 3 # one way notifications await client.notify("notification", "hello") asyncio.get_event_loop().run_until_complete(main()) ``` ### Benchmark Some basic performance benchmarks against the official implementation on my development machine. | package | call (QPS) | notify (QPS) | | ------------- |:-------------:| -----:| | msgpack-rpc-python | 5414 | 11746 | | aio-msgpack-rpc | 5781 | 86957 |


نیازمندی

مقدار نام
- msgpack
- pytest
- pytest-asyncio
- asyncio-extras


زبان مورد نیاز

مقدار نام
>=3.6 Python


نحوه نصب


نصب پکیج whl aio-msgpack-rpc-0.2.0:

    pip install aio-msgpack-rpc-0.2.0.whl


نصب پکیج tar.gz aio-msgpack-rpc-0.2.0:

    pip install aio-msgpack-rpc-0.2.0.tar.gz