RMQaio
Async RabbitMQ library with spec-based API, topology restore, and automatic reconnection.
Installation
pip install rmqaio
Quick Start
import asyncio
from rmqaio import Connection, Exchange, ExchangeSpec, Ops, Queue, QueueSpec
async def main():
conn = Connection("amqp://localhost")
await conn.open()
ops = Ops(conn)
exchange = Exchange(ExchangeSpec(name="events", type="topic", durable=True), ops)
await exchange.declare(restore=True)
queue = Queue(QueueSpec(name="my-queue", durable=True), ops)
await queue.declare(restore=True)
await queue.bind("events", routing_key="#", restore=True)
await conn.close()
asyncio.run(main())
Release files for rmqaio 0.19.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| rmqaio-0.19.0.tar.gz | 18.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| rmqaio-0.19.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 38.8 kB
Release files / rmqaio-0.19.0.tar.gz
| Download URL | rmqaio-0.19.0.tar.gz |
|---|---|
| Size | 18.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
009a09907a7097c96703ee15d8f54c1d8f79660be757e33b9c573f25a504afa2
|
|
BLAKE2b-256 checksum How to use checksums |
6f24430281e480484926d3de2f36f36f8dadb5be9f78ffeb2e4036cc0524d628
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/2.3.2 CPython/3.11.9 Darwin/25.2.0
|
Release files / rmqaio-0.19.0-py3-none-any.whl
| Download URL | rmqaio-0.19.0-py3-none-any.whl |
|---|---|
| Size | 20.6 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
62fc13564a8d1d9ff7ddc61d0fb5fde6168e7a8e5295985ab566dc3a5da31eab
|
|
BLAKE2b-256 checksum How to use checksums |
e88f68d052d5775e59d3810dce4bd1b81c921676bb0b31cf10850d9993c1cd71
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/2.3.2 CPython/3.11.9 Darwin/25.2.0
|