Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

I am using Python3 and I want to use RabbitMQ

I am using Python3 and I want to use RabbitMQ. I already tried to use Pika, and txAMQP but they do not support Python 3. Have anybody an idea how I can use RabbitMQ.

like image 934
Kristof Dochez Avatar asked Mar 27 '13 09:03

Kristof Dochez


2 Answers

If you need the performance or features of librabbitmq rather than a pure-Python library, I wrote https://github.com/jbg/rabbit which, although being fairly rudimentary, does allow you to use the librabbitmq C library on Python 3.

EDIT 18 months later: I renamed the package to rabbitmq due to it conflicting with an existing PyPI package, and it's now on PyPI, so you can just pip install rabbitmq.

like image 63
jbg Avatar answered Sep 28 '22 11:09

jbg


Check this page https://github.com/hollobon/pika-python3 May be it can help you.

like image 45
mike Avatar answered Sep 28 '22 12:09

mike