I know there is a number of libraries, implementing AMQP support in python. What I need, though, is a library, that will allow me to do AMQP publish in a synchronous style, because it will be used from a WSGI app, so the usual asynchronous callback-driven style of interaction with the queue broker will be a bit out of place there.
Other parts of the system use pika for AMQP support, but it is asynchronous and I'd rather not use it even though there is a sort of "blocking" connection there.
Of course, if all else fails, it is possible to maintain a Pika event loop per WSGI process. Another problem is that I've found a couple of nasty (IMO) bugs in the current stable version of Pika and I'd rather use something else.
To reiterate:
- I need to do basic.publish (with "confirm" support! so that I know when the message is not actually published)
- In a synchronous fashion
- To rabbitmq (obviously, "pure" AMQP could also work)
- From a python WSGI application