chamilad
chamilad

Reputation: 1659

AMQP 1.0 Library for Python

I'm looking for a AMQP 1.0 compliant Python library. I've gone through several libraries but they all seem to support only AMQP 0.9.1.

Puka (https://github.com/majek/puka) doesn't seem to mention the specific AMQP version it supports, but it only says it's a RabbitMQ client.

Upvotes: 8

Views: 8042

Answers (2)

Tomek C.
Tomek C.

Reputation: 657

For AMQP 1.0 I have found uamqp: https://github.com/Azure/azure-uamqp-python (MIT License)

Upvotes: 3

Tim Bish
Tim Bish

Reputation: 18366

Apache Qpid project offers clients for a number of programming languages that are AMQP 1.0 compliant. There are probably others out there as well but the Qpid bits are nice as they are all based around a single core called Proton so the API is pretty consistent across client implementations.

Upvotes: 8

Related Questions