High level interfaces for work with RabbitMQ.
Project description
Stack:
Installation
pip install rabbitmq-clients
Usage
Run rabbitMQ on your computer.
Producer
import asyncio
import json
from rabbitmq_clients import RabbitProducer
if __name__ == "__main__":
producer = RabbitProducer(
host='localhost',
login='test',
password='test',
)
data = {"result": True}
asyncio.run(
producer.publish(
json.dumps(data),
queue_name='test_queue_name',
)
)
Consume multiply queues (recommended)
import asyncio
from rabbitmq_clients import RabbitConsumer, QueueDTO
from rabbitmq_clients.core.types import JSON
async def show_decoded_result(result: JSON):
print(result)
async def show_encoded_result(result: JSON):
print(result.body)
if __name__ == "__main__":
consumer = RabbitConsumer(
host='localhost',
login='test',
password='test',
)
first_queue = QueueDTO(
name='decoded_result',
callback=show_decoded_result,
)
second_queue = QueueDTO(
name='encoded_result',
callback=show_encoded_result,
auto_decode=False,
)
consumer.add_queue(first_queue)
consumer.add_queue(second_queue)
try:
asyncio.run(consumer.consume_all())
except KeyboardInterrupt:
pass
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file rabbitmq_clients-0.1.22.tar.gz.
File metadata
- Download URL: rabbitmq_clients-0.1.22.tar.gz
- Upload date:
- Size: 5.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.0.1 CPython/3.11.11 Linux/6.8.0-1017-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42c809d5768763c0d7c33513e22647962864c8513df279f1eed10168dc0fb5d9
|
|
| MD5 |
542edcb07ba04449381d443ad8442ff4
|
|
| BLAKE2b-256 |
389f127b74945b51cdf02c2777c1f8a6410d3e96013a8907e19c1d6198ad1805
|
File details
Details for the file rabbitmq_clients-0.1.22-py3-none-any.whl.
File metadata
- Download URL: rabbitmq_clients-0.1.22-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/2.0.1 CPython/3.11.11 Linux/6.8.0-1017-azure
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
daf9be86f1e38b83755127083ff4e684ed02affbfabc295eb0b8bec0e6d5e16f
|
|
| MD5 |
e1aac0eca4b8c441ee2a347fb92daa70
|
|
| BLAKE2b-256 |
12c49153767a21fea7332574a9c9d44abd177b49c241213837ab90ee94b05bf4
|