Fast, non-blocking JSON based RPC system.
Project description
A fast non-blocking JSON based RPC library for Python.
Usage
Server
class MyHandler(object): def foo(self, handle, arg1, arg2): handle.done(do_something(arg1, arg2)) import rpc.server s = rpc.server.RPCServer('localhost', 9999, handler=MyHandler()) s.start()
Client
import rpc.client c = rpc.client.RPCClient('localhost', 9999) future = c.foo('Some data', 'would go here') assert future.wait() == 'Expected result.'
Feedback
Questions, comments: power@cs.nyu.edu
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
speedy-0.16.tar.gz
(6.2 kB
view details)
File details
Details for the file speedy-0.16.tar.gz
.
File metadata
- Download URL: speedy-0.16.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c74ed239745b0589fb8dab6a4f776f209126f9bd1faa3b1e078f7cb8a92c92e1 |
|
MD5 | 493d1e5eccb1750b1edb9b87d2e78e76 |
|
BLAKE2b-256 | 834dd939672b266cd2dab40d412f3326233a7faad8b7ed04a736a294f0792264 |