derberg / python-mqtt-client-template

This template generates MQTT Python client module. Its purpose is to abstract for the application client technical information about the broker and the names of topics it should use. Instead, it generates a module that provides a set of indent-driven functions that one can invoke to send a message to the application through the message broker.
2 stars 1 forks source link

see how we can support not only `publish` but also `subscribe` operations #4

Closed derberg closed 4 months ago

derberg commented 1 year ago

At the moment the generated client enables a set of functions that are generated out of publish operations, so user can use it to send messages.

We need to also explore how we could also generate receive* functions and do ch.operations().filterBySend() -> https://github.com/derberg/python-mqtt-client-template/blob/main/components/TopicFunction.js#L32C27-L32C60

thulieblack commented 12 months ago

Will pick this is my next issue