MessagePack RPC implementation based on Tornado.
import msgpackrpc
address = msgpackrpc.Address("localhost", 18800)
client = msgpackrpc.Client(address)
result = client.call('sum', 1, 2) # = > 3
python setup.py install
- msgpack-python (0.1.12)
- tornado (2.1.1)
- Add advanced and async return to Server.
- UDP, UNIX Domain support
- Utilities (MultiFuture, SessionPool)
- Support pyev for performance if needed
Author | Masahiro Nakagawa |
Copyright | Copyright (c) 2011- Masahiro Nakagawa |
License | Apache License, Version 2.0 |