Mosquito

Results 223 comments of Mosquito

`.declare()` methods it’s an implementation of internal AMQP RPC frames. It’s still close to AMQP protocol and still readable. Of course I could add `.get()` method as a shortcut, but...

Just use `amqps://guest:guest@localhost/`. When server has self-signed certificate, just add `cafile` parameter. e.g. `amqps://guest:guest@localhost/?cafile=/home/user/.ssl/ca.pem`

It's should be closed with pamqp release.

@Artimi so much has been changed in `aio-pika`, `aiormq` and `pamqp`, do you think it's still relevant?

Looks like the YARL issue. If I properly read your output.

The `aiormq`'s [Base class contains](https://github.com/mosquito/aiormq/blob/816371a0c75ab092ad5f1e0f541b786ae4a20569/aiormq/base.py#L125) a task container and when `.close()` method it's guarantee cancelation all related tasks and all tasks on child instances. e.g. `Connection` creates `Channel` object, and...

`aio-pika` is a high level wrapper around `aiormq` and contain helpers for autoreconnects and some useful tricks. You can use aiormq as well but have to handle reconnects etc.

Yes, it's true, receiver should start before sender.

You might be found a solution in `Basic.Return` or `Dead Letter Exchange` for this case.

I planned to support version 3.5 for as long as I could, however, in `pamqp` support [has been discontinued since version 3.0.0](https://github.com/gmr/pamqp/releases/tag/3.0.0a0). The error that you have is a problem...