Small, interoperable, automagic RPC library.
Project description
QuickRPC is a library that is designed for quick and painless setup of communication channels and Remote-call protocols.
Python 3 only
A remote interface is defined like so:
from quickrpc import RemoteAPI, incoming, outgoing
class EchoAPI(RemoteAPI):
'''Demo of how to use RemoteAPI.
EchoAPI answers incoming `say` calls with an `echo` call.
'''
@incoming
def say(self, sender="", text=""): pass
@outgoing
def echo(self, receivers=None, text=""): pass
The interface is used over a Transport, which might e.g. be a TCP connection or Stdio:
api = EchoAPI(codec='jsonrpc', transport='tcpserv::8888')
# on incoming "say", call "echo"
api.say.connect(lambda sender="", text="": api.echo(text=text))
# transport starts in a new thread.
api.transport.start()
input('Serving on :8888 - press ENTER to stop')
api.transport.stop()
That’s it! You could now connect to the server e.g. via telnet:
$ telnet localhost 8888 say text:"hello"
(Exit via Ctrl+5 -> “quit”)
INSTALLATION
Requirements: Basically none, except for Python >= 3. For the QtTransports, PyQt4 is required.
Then:
pip install https://github.com/loehnertj/quickrpc/archive/master.zip
Or, download / clone and use python setup.py install.
LICENSE
MIT License: https://github.com/loehnertj/quickrpc/blob/master/LICENSE
DOCUMENTATION
Please proceed to http://quickrpc.readthedocs.io/en/latest/index.html
TODO
This is a hobby project. If you need something quick, contact me or better, send a pull request. :-)
Things I might add in the future: In-process “loopback” transport; Serial interface transport; msgpack Codec.
SSH support would be really cool but don’t hold your breath for that.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file quickrpc-0.1.0.tar.gz.
File metadata
- Download URL: quickrpc-0.1.0.tar.gz
- Upload date:
- Size: 29.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.5.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
15432a9c3344a7ba6f3d0b2bbed8b6798098cc3b6050584e6885b38808d0a1b5
|
|
| MD5 |
a206b8688a8a0e0befdfd59658a86d36
|
|
| BLAKE2b-256 |
d62c4a0a2e24e6fc3837f0fb8070a8e0594f485d99c24796ff03e420b6437e5e
|
File details
Details for the file quickrpc-0.1.0-py3-none-any.whl.
File metadata
- Download URL: quickrpc-0.1.0-py3-none-any.whl
- Upload date:
- Size: 35.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/50.3.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.5.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab83160864c8944e127fcd0ef037d4e8ea20aec227ff10fea5328ab380ed4b1f
|
|
| MD5 |
e4202a5822f7ca79ecc3dd7ee9f43960
|
|
| BLAKE2b-256 |
34452a7064b9fb9ab415432c960343c906097180122fe131c47dfba5478d80eb
|