Python client of the slacker RPC.
This project is still working in progress.
pip install slacker-python
from slacker.geventbackend import Client
from slacker.proxy import Proxy
c = Client("127.0.0.1:2104")
p = Proxy(c, "slacker.example.api")
## remote function echo
p.echo("hello")
## remote function rand-ints
p.call("rand-ints", 40)
This package is open sourced under MIT License.