Skip to content

Latest commit

 

History

24 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MessagePack RPC for Python

MessagePack RPC implementation based on Tornado.

Example

import msgpackrpc

address = msgpackrpc.Address("localhost", 18800)
client = msgpackrpc.Client(address)
result = client.call('sum', 1, 2)  # = > 3  

Installation

python setup.py install

Dependent modules

  • msgpack-python (0.1.12)
  • tornado (2.1.1)

TODO

  • Add advanced and async return to Server.
  • UDP, UNIX Domain support
  • Utilities (MultiFuture, SessionPool)
  • Support pyev for performance if needed

Copyright

AuthorMasahiro Nakagawa
CopyrightCopyright (c) 2011- Masahiro Nakagawa
LicenseApache License, Version 2.0

About

MessagePack RPC implementation for Python

Resources

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages