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
- Host: GitHub
- URL: https://github.com/azmainadel/the-rabbit-with-the-python
- Owner: azmainadel
- Created: 2021-09-15T05:38:45.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-09-16T08:05:57.000Z (over 4 years ago)
- Last Synced: 2025-02-12T22:51:24.097Z (12 months ago)
- Topics: python, rabbitmq, tutorial
- Language: Python
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```