jsonrpclib icon indicating copy to clipboard operation
jsonrpclib copied to clipboard

A Python (2 & 3) JSON-RPC over HTTP that mirrors the syntax of xmlrpclib (aka jsonrpclib-pelix)

Results 9 jsonrpclib issues
Sort by recently updated
recently updated
newest added

Got the following traceback: ``` File "/opt/redislabs/lib/python3.9/site-packages/jsonrpclib/jsonrpc.py", line 778, in __call__ return self.__send(self.__name, kwargs) File "/opt/redislabs/lib/python3.9/site-packages/jsonrpclib/jsonrpc.py", line 652, in _request return response["result"] TypeError: 'NoneType' object is not subscriptable ``` from...

I have a python file which has this imported as a module, on python2 it runs fine but on python3 it throws this error. How to fix for python3?

when u read documenetation u talk about Asynchronous JSON-RPC Server but its not included in actual code

It would be interesting to implement an `asyncio`-based version of the library, as it undeniably increases performances in most I/O cases. This would require a big refactoring of the project,...

enhancement

The thread pool provides an easy way to have a well behaving JSON-RPC server in most situations, with some control of resources consumption. The obvious issue here is the GIL...

proposal

Support for Python 2.6 forces to use ugly tricks to ensure compatibility with this version. It also causes a lot of trouble to correct bugs, as each correction must then...

wontfix

I haven’t had time to go through the library yet, but how hard would you estimate that it would be to add HTTP basic auth support?

Sorry, but i again... Simple server (dispathers do only adding and editing global dict, no mysql or some IO or any special). About 40-50 connections per time. PooledJSONRPCServer(min=10, max=100) as...

I run tests from 0.4.3.3 sdist and I noticed that the `CGIHandlerTests.test_server` test fails: ``` _________________________ CGIHandlerTests.test_server __________________________ self = def test_server(self): """ Tests the CGI request handler """ #...