A python remote communications library
Project description
kiwipy
kiwipy is a library that makes remote messaging using RabbitMQ (and any other protocol for which a backend is written) EASY. I don’t know about you but I find RabbitMQ HARD. It’s all too easy to make a configuration mistake which is then difficult to debug. With kiwipy, there’s none of this, just messaging, made simple, with all the nice properties and guarantees of AMQP.
Here’s what you get:
RPC
Broadcast (with filters)
Task queue messages
Let’s dive in, with some examples taken from the rmq tutorial.
RPC
The client:
from kiwipy import rmq
communicator = rmq.RmqThreadCommunicator.connect(connection_params={'url': 'amqp://localhost'})
# Send an RPC message
print(" [x] Requesting fib(30)")
response = communicator.rpc_send('fib', 30).result()
print((" [.] Got %r" % response))
The server:
import threading
from kiwipy import rmq
def fib(comm, num):
if num == 0:
return 0
if num == 1:
return 1
return fib(comm, num - 1) + fib(comm, num - 2)
communicator = rmq.RmqThreadCommunicator.connect(connection_params={'url': 'amqp://localhost'})
# Register an RPC subscriber with the name square
communicator.add_rpc_subscriber(fib, 'fib')
# Now wait indefinitely for fibonacci calls
threading.Event().wait()
Worker
Create a new task:
import sys
from kiwipy import rmq
message = ' '.join(sys.argv[1:]) or "Hello World!"
with rmq.RmqThreadCommunicator.connect(connection_params={'url': 'amqp://localhost'}) as communicator:
communicator.task_send(message)
And the worker:
import time
import threading
from kiwipy import rmq
print(' [*] Waiting for messages. To exit press CTRL+C')
def callback(_comm, task):
print((" [x] Received %r" % task))
time.sleep(task.count(b'.'))
print(" [x] Done")
try:
with rmq.RmqThreadCommunicator.connect(connection_params={'url': 'amqp://localhost'}) as communicator:
communicator.add_task_subscriber(callback)
threading.Event().wait()
except KeyboardInterrupt:
pass
Versioning
This software follows Semantic Versioning
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
Hashes for kiwipy-0.3.5-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | dcf913d24aafb0e445b433769377f93f076a07c123205dcfe21248bbd306d82d |
|
MD5 | c81553d7fe94ab26220ec2c1afbb1438 |
|
BLAKE2b-256 | 7a471b4677c45c7a76f3cb4e05a403605ecdb3445961df4069547fb6ad21502b |