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.

  • amqp - https://pypi.python.org/pypi/amqp/1.4.7
  • pika - https://github.com/pika/pika
  • amqplib - https://code.google.com/p/py-amqplib/
  • 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.


    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.

    链接地址: http://www.djcxy.com/p/34202.html

    上一篇: RabbitMQ:与Topic交换的持久消息

    下一篇: 适用于Python的AMQP 1.0库