Metadata-Version: 1.0
Name: pyredisrpc
Version: 0.1.0
Summary: redis rpc for python
Home-page: https://github.com/gowhari/pyredisrpc
Author: Iman Gowhari
Author-email: gowhari@gmail.com
License: MIT
Description: pyredisrpc
        ==========
        
        rpc over redis for python
        
        install
        =======
        
        ::
        
            pip install pyredisrpc
        
        
        usage
        =====
        
        server:
        
        .. code:: python
        
            server = pyredisrpc.Server('test-queue')
        
            @server.method
            def add(a, b):
                return a + b
        
            server.run()
        
        client:
        
        .. code:: python
        
            client = pyredisrpc.Client('test-queue')
            print(client.add(1, 2))
        
Platform: UNKNOWN
