Skip to main content

Simple RabbitMQ consuming framework

Project description

https://travis-ci.org/asahaf/rabbitleap.svg?branch=master

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


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 hashes)

Uploaded Source

Built Distribution

rabbitleap-0.1.1-py2.py3-none-any.whl (19.3 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page