This repository is to demonstrate IoT protocols for beginners. It provides basic demonstration of 4 IoT protocols.
- AMQP
- SOAP
- HTTP
- MQTT
Run it using below command, it will install rabbitmq locally and only then will any code under AMQP will work.
Note: Docker Client must be installed and running before running below command
After execution of this command the container will automatically be deleted
docker run -it --rm --name rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3.10-management
Install all dependencies with the command below
pip install -r .\requirements.txt