A simple MQTT consumer example template using paho-mqtt.
| Name | Version |
|---|---|
| Python | 3.7 |
| pipenv(Python module) | 2018.11.26 or up |
- Initialize environment variable
cp sample.env .env
- Initialize Python environment
make init
- Enter the environment and start developing
pipenv shell
- Start mqtt-consumer service
cd mqtt/
python3 app.py
The service will start at 127.0.0.1:1883
This project uses black and isort for formatting
make reformat
This project uses pylint and flake8 for linting
make lint
This project uses pytest and its extension(pytest-cov) for testing
| Name | Version |
|---|---|
| Docker | 19.03.6 |
| docker-compose | 1.17.1 |
docker-compose build
This will build the image with tag mqtt-consumer:latest
- Darkborderman/Divik(reastw1234@gmail.com)