Simple RabbitMQ consuming framework
Project description
RabbitLeap
RabbitLeap is a simple RabbitMQ consuming framework. It’s built on top of Pika, a RabbitMQ client library for Python.
Features
Automatically recovers from connection failures
Configurable retry policy for handing failures
Automatically route messages to handlers, based on custom logic and different message properties
Installation
$ pip install rabbitleap
Hello, world
from rabbitleap.consumer import Consumer
from rabbitleap.handling import MessageHandler
class RabbitEatHandler(MessageHandler):
def handle(self):
print('rabbit eat: {}'.format(self.envelope.payload.decode('utf-8')))
consumer_queue_name = 'consumer_queue'
amqp_url = r'amqp://guest:guest@localhost:5672/%2f'
consumer = Consumer(amqp_url=amqp_url, queue_name=consumer_queue_name)
# route message of type `rabbit.eat` to RabbitEatHandler
consumer.add_handler(r'rabbit\.eat', RabbitEatHandler)
try:
consumer.start()
except KeyboardInterrupt:
consumer.stop()
Documentation
Documentation and resources are available at https://rabbitleap.readthedocs.io
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
rabbitleap-0.1.1.tar.gz
(28.3 kB
view details)
Built Distribution
File details
Details for the file rabbitleap-0.1.1.tar.gz
.
File metadata
- Download URL: rabbitleap-0.1.1.tar.gz
- Upload date:
- Size: 28.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.3.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1537fb7a9ebaa50f578336f533bab455c26e2beb6a9ea733badc2593c93d47bc |
|
MD5 | b527cc02d9fa0aa68ec9d9e344feb6d7 |
|
BLAKE2b-256 | 41801e39cf4422885d0c6ea93f4791f05e3b38b19d48d60636335240b3b0f13d |
File details
Details for the file rabbitleap-0.1.1-py2.py3-none-any.whl
.
File metadata
- Download URL: rabbitleap-0.1.1-py2.py3-none-any.whl
- Upload date:
- Size: 19.3 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.3.0 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 39b0177c8a3c81768098fd62e66bcc1577434a2536e5ef0271565475167c5874 |
|
MD5 | b424b6b2da7af619924fc8715c6eaf39 |
|
BLAKE2b-256 | 80a06c24fdb17c9aebac71efe54eea8616f985bec5ca35d050f958ade4213aa0 |