aio-bunny 0.0.3

Creator: bigcodingguy24

Last updated:

Add to Cart

Description:

aiobunny 0.0.3

aio-bunny
An asyncio compatible wrapper around aio-pika that brings the follwoing advantages:

Simplified API: Abstracts the complexity of defining queues and exchanges, making it easy to set up consumer/producers.
Graceful Consumer Shutdown: Provides an API to stop consumers without disrupting unacknowledged tasks, ensuring a smooth and safe shutdown process.
Idempotent Consumers: Offers a straightforward API for integrating with external databases (e.g., Redis, MySQL) to ensure idempotency. As recommended in the RabbitMQ documentation, consumers configured with manual acknowledgment and concerned about avoiding duplicate message processing should implement idempotency.
Prometheus Integration: Integrates with Prometheus to collect useful metrics for monitoring the state of consumers and producers. You can easily choose whether to enable metric collection based on your needs.

Installation
pip install aio-bunny

Usage examples
In the simplest form, you can do the following to spin up a consumer:
import asyncio

from aio_bunny import Bunny


async def main():
bunny = Bunny("amqp://guest:guest@127.0.0.1/")

@bunny.consumer(
queue="myqueue",
exchange="myexchange",
routing_key="key")
async def on_message(msg: bytes):
await asyncio.sleep(1)
print('received:', msg.decode())


await bunny.start()


if __name__ == "__main__":
loop = asyncio.get_event_loop()
loop.create_task(main())
loop.run_forever()


To shutdown the consumers gracefully, all you need to do is to call the stop method on the Bunny instance.
This method will stop the consumer from accepting new messages from the broker, waits for all inflight tasks to finish and exits cleanly.\
So In the following example, we want to stop the application whenever SIGINT OR SIGTERM is received:
import asyncio
import signal

from aio_bunny import Bunny


async def main():
bunny = Bunny("amqp://guest:guest@127.0.0.1/")

async def shutdown(signal, loop):
print(f"Received exit signal: {signal.name}")
await bunny.stop() # Stopping the consumers here
loop.stop()

loop = asyncio.get_event_loop()
# Call the shutdown funciton on any of these signals.
signals = (signal.SIGTERM, signal.SIGINT)
for s in signals:
loop.add_signal_handler(s, lambda s=s: asyncio.create_task(shutdown(s, loop)))

@bunny.consumer(
queue="myqueue",
exchange="myexchange",
routing_key="key")
async def on_message(msg: bytes):
await asyncio.sleep(1)
print('received:', msg.decode())


await bunny.start()


if __name__ == "__main__":
loop = asyncio.get_event_loop()
loop.create_task(main())
loop.run_forever()

Versioning
This software follows Semantic Versioning
Development
Setting up development environment
Clone the project:
git clone repo_url
cd aio-bunny

Create a virtualenv for aio-bunny:
python3 -m venv venv
source venv/bin/activate

Install the requirements:
pip install -e '.[develop]'

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.