aiohttp-jsonrpc icon indicating copy to clipboard operation
aiohttp-jsonrpc copied to clipboard

JSON-RPC server and client implementation based on aiohttp

Results 2 aiohttp-jsonrpc issues
Sort by recently updated
recently updated
newest added

I suggest a mechanism of not using exception mapping in the global scope. You can define exception mapping in a view: > class JSONRPCTestService(JSONRPCView): > `__JSONRPC_EXCEPTIONS__` = { > CustomServerException:...

I use ujson as a dumper/loader due to performance reasons. But for large objects (depth) `py2json` becomes a bottleneck. Since functionality of py2json is strictly a dumper thing, what do...