Metadata-Version: 1.0
Name: TornRPC
Version: 1.0.1
Summary: A tornado RPC framework
Home-page: UNKNOWN
Author: Kyle Laplante
Author-email: kyle.laplante@gmail.com
License: UNKNOWN
Description: 
        A tornado RPC library. 
        
        This RPC framework uses tornado
        so its very quick and asynchronous.
        
        Example:
        ### example server code ###
        
        from tornado import gen
        from tornrpc.server import TornRPCServer
        
        
        def test(arg):
          return "You said %s" % arg
        
        @gen.coroutine
        def testasync(arg):
          return "You said async %s" % arg
        
        server = TornRPCServer()
        server.register(test)
        server.register_async(testasync)
        server.start(8080)
        
        
        ### example client code ###
        
        from tornrpc.client import TornRPCClient
        
        client = TornRPCClient('localhost:8080')
        client.test('hi')
        client.testasync('hi')
        
Keywords: rpc tornado asynchronous web
Platform: UNKNOWN
