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.1
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.1.tar.gz | 18.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| rmqaio-0.19.1-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 38.8 kB
Release files / rmqaio-0.19.1.tar.gz
| Download URL | rmqaio-0.19.1.tar.gz |
|---|---|
| Size | 18.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
06ae49a107a28e6b15837ab85cbe2af125a9f23a632d69f6733d54b67e5a6792
|
|
BLAKE2b-256 checksum How to use checksums |
cc68cba05276c5c17d42f678f2aca09520686fae3f8fedc50f804d2e8a0c7f4e
|
| 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.1-py3-none-any.whl
| Download URL | rmqaio-0.19.1-py3-none-any.whl |
|---|---|
| Size | 20.6 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
2d2f848a4a8d2405c8b981b5279a5cac79300e63baec6a79c2605cb33092def5
|
|
BLAKE2b-256 checksum How to use checksums |
9bd34f172a05c1f76ba24288d3c38e5e1981d85a8d4229e9b5d86c29e3992652
|
| 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
|