AMQP 1.0 Library for Python
Asked Answered
P

2

8

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.

Paving answered 27/11, 2015 at 10:6 Comment(4)
AMQP 0.9.1 and AMQP 1.0 are two completely different types of standards that does not try to solve the same issues. The fact that AMQP 1.0 was named just that is very confusing. rabbitmq.1065348.n5.nabble.com/AMQP-1-0-Support-td7819.htmlRileyrilievo
Did you find the solution?Morganne
@Morganne Apache Qpid as the answer suggests seems to be the only approach. I was not able to follow through with this though.Paving
yes thanks. Just configured Qpid proton. and it's workingMorganne
C
8

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.

Chronograph answered 27/11, 2015 at 14:45 Comment(0)
J
3

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

Jaal answered 28/5, 2020 at 13:38 Comment(2)
Please don't just post some tool or library as an answer. At least demonstrate how it solves the problem in the answer itself.Avellaneda
I am currently trying to connect to a RabbitMQ with AMQP1.0 plugin using this library, but without success. Were you able to connect? I would love to see some working example!Ruelu

© 2022 - 2024 — McMap. All rights reserved.