aiohttp JSON-RPC server handler and client
Project description
JSON-RPC server and client implementation based on aiohttp.
Server example
from aiohttp import web
from aiohttp_jsonrpc import handler
class JSONRPCExample(handler.JSONRPCView):
def rpc_test(self):
return None
def rpc_args(self, *args):
return len(args)
def rpc_kwargs(self, **kwargs):
return len(kwargs)
def rpc_args_kwargs(self, *args, **kwargs):
return len(args) + len(kwargs)
def rpc_exception(self):
raise Exception("YEEEEEE!!!")
def rpc_test_notification(self):
print("Notification received")
app = web.Application()
app.router.add_route('*', '/', JSONRPCExample)
if __name__ == "__main__":
import logging
logging.basicConfig(level=logging.INFO)
web.run_app(app, print=logging.info)
Client example
import asyncio
from aiohttp_jsonrpc.client import ServerProxy
loop = asyncio.get_event_loop()
client = ServerProxy("http://127.0.0.1:8080/", loop=loop)
async def main():
print(await client.test())
# Or via __getitem__
method = client['args']
notification = client.create_notification("test_notification")
print(await method(1, 2, 3))
await notification()
results = await client.batch(
client['test'],
client['test'].prepare(),
client['args'].prepare(1, 2, 3),
client['not_found'].prepare(1, 2, 3),
# notify with params
notification.prepare(),
# notification without params
notification,
)
print(results)
client.close()
if __name__ == "__main__":
loop.run_until_complete(main())
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
aiohttp-jsonrpc-0.3.0.tar.gz
(7.1 kB
view details)
Built Distribution
File details
Details for the file aiohttp-jsonrpc-0.3.0.tar.gz
.
File metadata
- Download URL: aiohttp-jsonrpc-0.3.0.tar.gz
- Upload date:
- Size: 7.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 18959314312a47e63548db4d959219a55e65eb687070667905107afe9a0389c6 |
|
MD5 | 86bee7533465978f4c87e45e4d65c5eb |
|
BLAKE2b-256 | 784d0795df9d8dca981e87ebc4f71ed7276a743909b994deea1d3e7f1df66024 |
File details
Details for the file aiohttp_jsonrpc-0.3.0-py3-none-any.whl
.
File metadata
- Download URL: aiohttp_jsonrpc-0.3.0-py3-none-any.whl
- Upload date:
- Size: 8.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f3538f4963636aa70ca069ccb1518fd23b2917d47102bf09e8ec617ad763f241 |
|
MD5 | 1508bd03b7565059db0f11f325c92d08 |
|
BLAKE2b-256 | a3c38a2da5c0ee971a69accc071976ca2fcc01e926c4c0cd93da94f26a8917ee |