Generate MQTT service
gen_mqtt_service is toolset for generation of MQTT service.
Developed in python code: 100%.
The README is used to introduce the modules and provide instructions on how to install the modules, any machine dependencies it may have and any other information that should be provided before the modules are installed.
Table of Contents
Currently there are three ways to install package
Python package is located at pypi.org.
You can install by using pip
# python3
pip3 install gen-mqtt-service
Navigate to release page download and extract release archive.
To install gen_mqtt_service type the following
tar xvzf gen_mqtt_service-x.y.z.tar.gz
cd gen_mqtt_service-x.y.z/
# python3
wget https://bootstrap.pypa.io/get-pip.py
python3 get-pip.py
python3 -m pip install --upgrade setuptools
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade build
pip3 install -r requirements.txt
python3 -m build --no-isolation --wheel
pip3 install ./dist/gen_mqtt_service-*-py3-none-any.whl
rm -f get-pip.py
chmod 755 /usr/local/lib/python3.10/dist-packages/usr/local/bin/gen_mqtt_service_run.py
ln -s /usr/local/lib/python3.10/dist-packages/usr/local/bin/gen_mqtt_service_run.py /usr/local/bin/gen_mqtt_service_run.py
Navigate to release page download and extract release archive.
To install modules, locate and run setup.py with arguments
tar xvzf gen_mqtt_service-x.y.z.tar.gz
cd gen_mqtt_service-x.y.z/
# python3
pip3 install -r requirements.txt
python3 setup.py install_lib
python3 setup.py install_data
python3 setup.py install_egg_info
You can use docker to create image/container.
gen_mqtt_service requires next modules and libraries
gen_mqtt_service is based on OOP.
Generator structure
gen_mqtt_service/
├── conf/
│ ├── gen_mqtt_service.cfg
│ ├── gen_mqtt_service.logo
│ ├── gen_mqtt_service_util.cfg
│ ├── project.yaml
│ └── template/
│ ├── mosquitto/
│ │ ├── publisher.template
│ │ └── subscriber.template
│ ├── node/
│ │ ├── publisher.template
│ │ └── subscriber.template
│ ├── node_ws/
│ │ ├── client.template
│ │ └── server.template
│ └── paho/
│ ├── publisher.template
│ └── subscriber.template
├── __init__.py
├── log/
│ └── gen_mqtt_service.log
├── pro/
│ ├── __init__.py
│ ├── read_template.py
│ └── write_template.py
└── run/
└── gen_mqtt_service_run.py
10 directories, 18 files
Name | Stmts | Miss | Cover |
---|---|---|---|
gen_mqtt_service/__init__.py |
75 | 14 | 81% |
gen_mqtt_service/pro/__init__.py |
62 | 2 | 97% |
gen_mqtt_service/pro/read_template.py |
58 | 8 | 86% |
gen_mqtt_service/pro/write_template.py |
54 | 4 | 93% |
Total | 249 | 28 | 89% |
More documentation and info at
Contributing to gen_mqtt_service
Copyright (C) 2020 - 2024 by vroncevic.github.io/gen_mqtt_service
gen_mqtt_service is free software; you can redistribute it and/or modify it under the same terms as Python itself, either Python version 3.x or, at your option, any later version of Python 3 you may have available.
Lets help and support PSF.