3

I'm looking for a amqp broker written in python. Right now I'm using RabbitMQ with pika bindings. RabbitMQ does the job, but it would be nice to find something simpler and more lightweight written in python.

The only one I have found so far is SnakeMQ. But it does not(yet) support multiple queues, which is an requirement in my case.

Does anyone know if there are any alternatives written in python?

Carl
  • 740
  • 8
  • 18

1 Answers1

-3

Queue.Queue() is batteries-included, couldn't be simpler.

Brian Cain
  • 14,403
  • 3
  • 50
  • 88
  • 1
    Maybe I formulated the questing wrong. I'm looking for a message broker written in python, one that you can run as a "service". – Carl Nov 15 '12 at 07:10
  • 3
    I think the OP is looking for an inter-process message queue. To my reading Queue.Queue() is useful only as in intra-process/inter-thread queue. – Dan H Oct 01 '13 at 23:49