https://github.com/guilhermecaz/py-rabbitmq-tutorials
Hands-on exploration of RabbitMQ using Python, following the official RabbitMQ tutorials.
https://github.com/guilhermecaz/py-rabbitmq-tutorials
python rabbitmq tutorial
Last synced: 6 months ago
JSON representation
Hands-on exploration of RabbitMQ using Python, following the official RabbitMQ tutorials.
- Host: GitHub
- URL: https://github.com/guilhermecaz/py-rabbitmq-tutorials
- Owner: GuilhermeCAz
- License: mit
- Created: 2024-12-09T16:32:21.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-12-10T02:16:20.000Z (over 1 year ago)
- Last Synced: 2025-04-05T16:37:47.468Z (about 1 year ago)
- Topics: python, rabbitmq, tutorial
- Language: Python
- Homepage:
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RabbitMQ Tutorials with Python
[](https://opensource.org/licenses/MIT)
[](https://www.rabbitmq.com/)
[](https://www.python.org/downloads/)
[](https://github.com/astral-sh/ruff)
[](https://mypy-lang.org/)
This project is a hands-on exploration of RabbitMQ using Python. It follows the tutorials provided by RabbitMQ's official documentation to demonstrate basic messaging patterns and concepts.
## Project Structure
The project is organized into two main applications under the `src` directory:
- [**queues**](src/queues): Contains implementations for RabbitMQ messaging using queues.
- [**streams**](src/streams): Contains implementations for RabbitMQ messaging using streams.
Each tutorial or concept is structured in its own directory, following a modular approach for easy understanding and experimentation.
## Getting Started
To get started with this project, follow these steps:
### Prerequisites
- Python installed on your machine.
- RabbitMQ server running locally or accessible via network.
### Installation
1. Clone the repository:
```bash
git clone https://github.com/GuilhermeCAz/py-rabbitmq-tutorials
cd py-rabbitmq-tutorials
```
2. Install dependencies:
```bash
uv install
```
### Running the Tutorials
Each tutorial is in a separate folder under the `src/queues` or `src/streams` directory. To run a tutorial, simply follow the instructions in the `INSTRUCTIONS.md` file of the tutorial.
## Resources
[RabbitMQ Tutorials](https://www.rabbitmq.com/tutorials)
## Contributing
Contributions are welcome! If you find any issues or improvements, please submit an issue or a pull request.
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.