An open API service indexing awesome lists of open source software.

https://github.com/azmainadel/the-rabbit-with-the-python

Just the basic implementations of RabbitMQ using Python
https://github.com/azmainadel/the-rabbit-with-the-python

python rabbitmq tutorial

Last synced: 10 months ago
JSON representation

Just the basic implementations of RabbitMQ using Python

Awesome Lists containing this project

README

          

# the-rabbit-with-the-python
Just the basic implementations of RabbitMQ using Python

---

Docker script to run RabbitMQ:
```
# for RabbitMQ 3.9, the latest series
docker run -it --rm --name rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3.9-management

# for RabbitMQ 3.8,
# 3.8.x support timeline: https://www.rabbitmq.com/versions.html
docker run -it --rm --name rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3.8-management
```