Easy utilities for common RabbitMQ tasks
Project description
easyrabbit
Actually easy RabbitMQ utilities for common tasks. Hides the complexities of complete control packages like pika by wrapping common use cases in minimalistic wrappers.
Installation
You can install directly from Pypi:
pip install easyrabbit
or from git using pip:
pip install git+https://github.com/scnerd/easyrabbit
Usage
Simple routing
Reader
RoutingReader provides a fully asynchronous way to read from an exchange via a queue bound with a routing key. It launches a subprocess to free the calling program from being responsible for its computational overhead; within its own process, it uses pika’s asynchronous connection, enabling the highest possible performance client. The API exposed mimics a simple queue, if, after all, what you really want is to use a RabbitMQ queue as if it were a Python queue.
with RoutingReader(url, exchange, queue_name, routing_key) as reader:
for msg in reader:
print("Received the following message: {}".format(msg))
If the reader is needed persistently, you can also launch and terminate it yourself:
reader = RoutingReader(url, exchange, queue_name, routing_key)
reader.start()
# Do things with the reader
reader.close()
Note that even though the reader is asynchronous, you don’t need to wait for it to be ready before using it. All calls hang on the process pipe that sends data from the client process to your parent code. If you want to make sure that the connection is fully established before using it, however, you can use wait_till_ready:
reader = RoutingReader(url, exchange, queue_name, routing_key)
reader.start()
try:
reader.wait_till_ready(timeout=5)
except TimeoutError:
raise RuntimeError("RabbitMQ reader took more than 5 seconds to launch")
While reader.get is blocking, a non-blocking equivalent is reader.get_nowait, or your code can explicitly check that a value is available first using not reader.empty(). Iterating over reader just repeatedly calls get, and hence is blocking and will only end when the reader is closed. Use reader.getall_nowait() to obtain all values currently in the queue.
All result objects are byte arrays.
Writing
The analogous utility for writing is RoutingWriter, which provides a nearly identical interface for writing messages to RabbitMQ
with RoutingWriter(url, exchange, routing_key) as writer:
for msg in msgs:
writer.put(msg)
RoutingWriter exposes much the same API as RoutingReader, except of course exposing put instead of get.
Project details
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
File details
Details for the file easyrabbit-0.0.3.tar.gz
.
File metadata
- Download URL: easyrabbit-0.0.3.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c719d1b23f95bf33072eebb6c1f0a8e9763293f60da6298ba5b6142b4cd2b3e |
|
MD5 | 3771c4d74d56761626a3b70071b98977 |
|
BLAKE2b-256 | 3468224d7fabdaf78dd00eacc1d33ee12d1be84c25b24a7d779928ea7a7501be |
File details
Details for the file easyrabbit-0.0.3-py3-none-any.whl
.
File metadata
- Download URL: easyrabbit-0.0.3-py3-none-any.whl
- Upload date:
- Size: 7.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9415c6a1af8aadff1541ed917fc45c3733ab90e35926abad67f05dbb172a9a72 |
|
MD5 | deb06ebefd9b3af7e8eb51cedfd2403e |
|
BLAKE2b-256 | c0b0ad7c7b57ca25919a16d70fa31d373646ba450f023589efde66e97e07206d |