Skip to main content

Simple to use MQTT library based on the paho-mqtt package

Project description

Package name: JQTT

  • Author: Jaime Loeuf
  • License: MIT
  • Package Desciption:
    • This package is a simplified MQTT library based on the paho MQTT library.
    • Currently this package contains the
      1. 'Publisher' Class
      2. 'Subscription' Class
      3. 'Pub' function
      4. 'Sub' function
    • Currently lacking more documentation. For now please view test scripts for the different modules to see how to use this Package.
To Publish data to broker:
from JQTT import pub
pub('Chicken Nuggets!')

To Subscribe to data:

from JQTT import sub
def onMsg(client, userdata, message):
	print(message) # Callback function to print out the message
sub(onMsg) # Pass the function into the sub function to use it as a callback function
  • For the above lib usage. The broker and topics are not set, thus the default broker and topics will be used.

To Change broker and topic before publishing data or subscribing to messages:

from JQTT import sub, pub set_broker, set_topic
set_broker('m2m.org', 'p') # Set the broker to publish to
set_topic('MQTT_test', 'p') # Set the topic to publish to
pub('Hello, test 123') # Publish the message to the abv broker's topic
set_broker('m2m.org', 's') # Set the broker to subscribe to
set_topic('MQTT_test', 's') # Set the topic to subscribe to
def onMsg(client, userdata, message):
	print(message) # Callback function to print out the message
sub(onMsg) # Subscribe to the messages from the abv broker's topic using the abv callback function.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

JQTT-1.1.0.tar.gz (8.1 kB view details)

Uploaded Source

File details

Details for the file JQTT-1.1.0.tar.gz.

File metadata

  • Download URL: JQTT-1.1.0.tar.gz
  • Upload date:
  • Size: 8.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.1

File hashes

Hashes for JQTT-1.1.0.tar.gz
Algorithm Hash digest
SHA256 7792dbc2392e2da274cb850f30fddb06a5e1f130df0de0fc21eed8dc6141dced
MD5 9b5f9cb32a4879e07d2d43405f5c045e
BLAKE2b-256 22102fe9d322cff25faebacf1f3043d3f5524dd65ee74b73a3899a8401a111dc

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page