Basic framework for creating MQTT services
- Free software: MIT license
- Documentation: https://mqtt-service.readthedocs.io.
class ExampleListener(MqttMultiTopicListener):
pass
if __name__ == "__main__":
l = ExampleListener(listening_channel_list=["listening_channel1", "listening_channel2"])
l.loop_forever()
- TODO
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.