The Python package for the asyncio remote procedure calling
- Free software: BSD license
- Documentation: https://asyncio-rpc.readthedocs.io.
- Asyncio RPC client/server
- Msgpack serialization with option to use own dataclasses (Python 3.8)
- Redis communication layer
- Other serialization methods and communication layers can be added
The examples can be run from this directory, for the dataclass example (using localhost as redis host):
>>> python3.8 -m examples.dataclass.server localhost >>> python3.8 -m examples.dataclass.client localhost
>>> docker-compose run pytest --cov=asyncio_rpc --cov-report=html