Can anyone please tell me what are the differences between pika and kombu messaging library in python?
问题 I want to use messaging library in my application to interact with rabbitmq. Can anyone please explain the differences between pika and kombu library? 回答1: Kombu and pika are two different python libraries that are fundamentally serving the same purpose: publishing and consuming messages to/from a message broker. Kombu has a higher level of abstraction than pika. Pika only supports AMQP 0.9.1 protocol while Kombu can support other transports (such as Redis). More generally, Kombu is more