Paho's MQTT dev Toolkit
Project description
Paho's MQTT toolkit
Welcome to Paho's MQTT Toolkit.
For who? and why?
This toolkit if for those who have gone through the documentation of the Paho's MQTT library and its examples and, like me, have felt that the API is somehow off and complicated to onboard applications.
I, personally, like Paho's MQTT library and I don't wish to replace it in anyway. However, I want to write applications that in a way, are familiar to the frameworks I use, e.g., Flask or Sanic. And therefore, abstracting the underlying implementation by using a solid configuration base with a simplified API.
What's the base configuration?
The base configuration of this toolkit uses Paho's event loop implementation by using the start_loop
and stop_loop
methods and creating a single entrypoint method that accepts different configuration parameters, start_async
.
Simple Usage
For more examples refer to the examples directory.
import time
from paho.mqtt.client import Client
from pahotoolkit import (
init,
start_async,
stop_async,
subscribe,
json_message,
)
from my_settings import (
HOST,
PORT,
USERNAME,
PASSWORD,
LOG_CONFIG
)
@subscribe('/temperature')
def handle_temperature(mqtt_client: Client, userdata, message):
print(f'Got {message}')
@subscribe('/my/topic')
@json_message() # by default, non-json messages in the topic are ignored
def listen_my_topic(payload: dict, *args, **kwargs):
# todo: do something with the payload
pass
@on_connect()
def client_connected(mqtt_client: Client, *args, **kwargs):
"""Publish something on_connect."""
mqtt_client.publish('/clients', 'Paho\'s MQTT toolkit message!')
# log_config => https://docs.python.org/3/library/logging.config.html#logging.config.dictConfig
# the default MQTT Client uses the default's MQTT Client constructor
# https://github.com/eclipse/paho.mqtt.python#client-1
def main():
client: Client = start_async(host=HOST, port=PORT, # port default to 1883 if not given
username=USERNAME, password=PASSWORD, # optional fields
initialize=False, log_config=LOG_CONFIG) # optional fields
init(client) # only required if initialize=False, else by default is automatically called
while True:
time.sleep(1) # or do something in this thread...
if __name__ == '__main__':
try:
main()
finally:
stop_async()
Contact
Arnulfo Solis
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file pahotoolkit-0.1.4.2.tar.gz
.
File metadata
- Download URL: pahotoolkit-0.1.4.2.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.20.0 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.28.0 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 81776010fe74d0ae7da5886a83b88e1dd72cff65f43aec134351bdf82f220f6b |
|
MD5 | e2b76f24a3b71330f0dd24f7924456d2 |
|
BLAKE2b-256 | 456d90dffe65de1fd76740e863afc45296c6440f8bc2bea275303885880ff60f |