Source: python-symmetric-jsonrpc
Section: python
Priority: extra
Maintainer: Sophie Brun <sophie@freexian.com>
Build-Depends: debhelper (>= 9), python-all
Standards-Version: 3.9.6
Homepage: https://github.com/niligulmohar/python-symmetric-jsonrpc
Vcs-Git: git://git.kali.org/packages/python-symmetric-jsonrpc.git
Vcs-Browser: http://git.kali.org/gitweb?p=packages/python-symmetric-jsonrpc.git;a=summary

Package: python-symmetric-jsonrpc
Architecture: all
Depends: ${python:Depends}, ${misc:Depends}, python-m2crypto
Description: 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.
