Metadata-Version: 1.0
Name: tinyrpc
Version: 0.5
Summary: A small, modular, transport and protocol neutral RPC library that, among other things, supports JSON-RPC and zmq.
Home-page: http://github.com/mbr/tinyrpc
Author: Marc Brinkmann
Author-email: git@marcbrinkmann.de
License: MIT
Description: tinyrpc: A small and modular way of handling web-related RPC
        ============================================================
        
        Motivation
        ----------
        
        As of this writing (in Jan 2013) there are a few jsonrpc_ libraries already out
        there on PyPI_, most of them handling one specific use case (e.g. json via
        WSGI, using Twisted, or TCP-sockets).
        
        None of the libraries, however, made it easy to reuse the jsonrpc_-parsing bits
        and substitute a different transport (i.e. going from json_ via TCP_ to an
        implementation using WebSockets_ or 0mq_).
        
        In the end, all these libraries have their own dispatching interfaces and a
        custom implementation of handling jsonrpc_.
        
        ``tinyrpc`` aims to do better by dividing the problem into cleanly
        interchangeable parts that allow easy addition of new transport methods, RPC
        protocols or dispatchers.
        
        Documentation
        -------------
        
        You'll quickly find that ``tinyrpc`` has more documentation and tests than core
        code, hence the name. See the documentation at
        <https://tinyrpc.readthedocs.org> for more details, especially the
        Structure-section to get a birds-eye view.
        
        Installation
        ------------
        
        .. code-block:: sh
        
           pip install tinyrpc
        
        .. _jsonrpc: http://www.jsonrpc.org/
        .. _PyPI: http://pypi.python.org
        .. _json: http://www.json.org/
        .. _TCP: http://en.wikipedia.org/wiki/Transmission_Control_Protocol
        .. _WebSockets: http://en.wikipedia.org/wiki/WebSocket
        .. _0mq: http://www.zeromq.org/
        
Keywords: json rpc json-rpc jsonrpc 0mq zmq zeromq
Platform: UNKNOWN
