Skip to main content

aiohttp JSON-RPC server handler and client

Project description

https://github.com/mosquito/aiohttp-jsonrpc/workflows/tox/badge.svg Latest Version https://img.shields.io/pypi/wheel/aiohttp-jsonrpc.svg https://img.shields.io/pypi/pyversions/aiohttp-jsonrpc.svg https://img.shields.io/pypi/l/aiohttp-jsonrpc.svg

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


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.4.0.tar.gz (8.3 kB view details)

Uploaded Source

Built Distribution

aiohttp_jsonrpc-0.4.0-py3-none-any.whl (9.0 kB view details)

Uploaded Python 3

File details

Details for the file aiohttp-jsonrpc-0.4.0.tar.gz.

File metadata

  • Download URL: aiohttp-jsonrpc-0.4.0.tar.gz
  • Upload date:
  • Size: 8.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for aiohttp-jsonrpc-0.4.0.tar.gz
Algorithm Hash digest
SHA256 3bd05afe985c4d50e500dcf2f9fc00a61a24eb6036857f49372d19cd11416351
MD5 5288dd81a0b3436243bfb5cb43874a3c
BLAKE2b-256 8a65dbcc69c5d6e952c8c2bfdbfe3f9783f4e4c1816fa93916a045a52c9d5506

See more details on using hashes here.

File details

Details for the file aiohttp_jsonrpc-0.4.0-py3-none-any.whl.

File metadata

  • Download URL: aiohttp_jsonrpc-0.4.0-py3-none-any.whl
  • Upload date:
  • Size: 9.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/32.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.8 tqdm/4.62.3 importlib-metadata/4.11.0 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.10.2

File hashes

Hashes for aiohttp_jsonrpc-0.4.0-py3-none-any.whl
Algorithm Hash digest
SHA256 cdd34a5f6c689653c75ba68146422990a0fce6c830d88c8fbf69de84dab2566f
MD5 d4d863c95d9c5cabf35020f2f870d277
BLAKE2b-256 e264b9fee2d2ad6ad3c1555cbf86f34336e41532047aa48028b21fc20c0a32f1

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page