Fast RabbitMQ task management library for asynchronous message handling
Project description
Fast RabbitMQ task management library for asynchronous message handling.
Features
Asynchronous RabbitMQ message handling
Task queue management with Pydantic validation
Robust retry mechanisms with Tenacity
Easy-to-use decorators for consumers and producers
Support for both sync and async handlers
Installation
pip install fast-mq-task
Quick Start
Producer Example:
from fast_mq_task import Producer
from fast_mq_task.models import TaskMessage
producer = Producer()
await producer.publish_task(task_message)
Consumer Example:
from fast_mq_task import Consumer
from fast_mq_task.register import consumer
@consumer(queue_name="task_queue")
async def handle_task(message: TaskMessage):
# Process your task here
pass
Requirements
Python >= 3.7
aio-pika
pydantic
tenacity
License
BSD License
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
fast_mq_task-2.0.16.tar.gz
(35.1 kB
view details)
File details
Details for the file fast_mq_task-2.0.16.tar.gz.
File metadata
- Download URL: fast_mq_task-2.0.16.tar.gz
- Upload date:
- Size: 35.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7b2d659b51f1ffa26f5262ffcd776283c31dad749ee499b7449bf289cee8fa5
|
|
| MD5 |
e2b715a027458f5eb415d0571796f723
|
|
| BLAKE2b-256 |
03e088ec31aa987c892d9e121ecc15c7d714f09533f0b6589e3d18912a89ce20
|