Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pmp-p/symmetricjsonrpc
Fork of niligulmohar/python-symmetric-jsonrpc
https://github.com/pmp-p/symmetricjsonrpc
Last synced: 24 days ago
JSON representation
Fork of niligulmohar/python-symmetric-jsonrpc
- Host: GitHub
- URL: https://github.com/pmp-p/symmetricjsonrpc
- Owner: pmp-p
- License: lgpl-2.1
- Created: 2018-02-03T04:20:01.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2017-06-21T09:33:16.000Z (over 7 years ago)
- Last Synced: 2024-04-22T21:16:39.076Z (9 months ago)
- Language: Python
- Size: 36.1 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- License: COPYING
Awesome Lists containing this project
README
Python Symmetric JSON-RPC
"A more beautiful JSON-RPC implemenation in python."
A JSON-RPC (see http://json-rpc.org) implementation for Python, with
the following features:* Symmetric - both the connecting and the listening process can send
and receive method calls, there is no specific "server" or "client"
process, and no difference between the two connection ends apart
from who initiates the connection.* Asynchronous - calls can be interlieved with new calls initiated
before a previous call has returned.* Thread-safe - calls to the remote side can be done from multiple
threads without any locking.* Transport agnostic - can run on top of anything that resembles a
socket the slightest (e.g. OpenSSL)What this really drills down to is that this library implements the
full specification of JSON-RPC over sockets, something no other
implementation of JSON-RPC for Python does.For usage details, look at the examples in the "examples" directory.