Skip to main content

An opinionated framework for writing MQTT applications.

Project description

Gourd - An MQTT framework

Gourd is an opinionated framework for writing MQTT applications.

See BREAKING_CHANGES.md if you are upgrading from a previous version.

Simple example

Create a file gourd_example.py:

from gourd import Gourd

app = Gourd(app_name='my_app', mqtt_host='localhost', mqtt_port=1883, username='mqtt', password='my_password')


@app.subscribe('#')
def print_all_messages(message):
    app.log.info(f'{message.topic}: {message.payload}')

Run it:

$ gourd gourd_example:app

Features

  • Create a fully-functional MQTT app in minutes
  • Status published to <app_name>/<hostname>/status with a Last Will and Testament
  • Debug logs published to <app_name>/<hostname>/debug
  • Use decorators to associate topics with one or more functions
  • JSON dictionary payloads automatically decoded to msg.json.

Documentation

Full documentation is available at https://gourd.clueboard.co/ and in the docs/ directory:

Working on the Docs

The docs site is built with Eleventy and deployed automatically to GitHub Pages on every push to main.

Prerequisites: Node.js 20+

Install dependencies:

npm install

Local development server (live-reloads on file changes):

npm run dev

Then open http://localhost:8080.

Build the site:

npm run build

Output goes to _site/ (gitignored).

Installation

Gourd is available on pypi and can be installed with pip:

python3 -m pip install gourd

API Reference

Gourd objects

To create your app you'll need an instance of the Gourd class. Unless your MQTT server is running on your local machine with no authentication you'll need to pass in some arguments:

class Gourd:
    def __init__(self, app_name, *, mqtt_host='localhost', mqtt_port=1883, username='', password='', qos=1, timeout=30, log_mqtt=True, log_topic=None, status_enabled=True, status_topic=None, status_online='ON', status_offline='OFF', max_inflight_messages=20, max_queued_messages=0, message_retry_sec=None):

Recommended arguments

These are the arguments you should almost always use:

  • mqtt_host
    • Default: localhost
    • The MQTT server to connect to
  • username
    • Default: ``
    • The username to connect to the MQTT server with
  • password
    • Default: ``
    • The password to connect to the MQTT server with

Optional arguments

These are the arguments that only need to be set if the default behavior does not work for your application:

  • mqtt_port
    • Default: 1883
    • The port number to connect to
  • qos
    • Default: 1
    • Default QOS Level for messages
  • timeout
    • Default: 30
    • The timeout for the MQTT connection
  • log_mqtt
    • Default: True
    • Set to false to disable mqtt logging
  • log_topic
    • Default: Generated based on app_name and hostname: {app_name}/{gethostname()}/debug
    • The MQTT topic to send debug logs to
  • status_enabled
    • Default: True
    • Set to false to disable the status topic
  • status_topic
    • Default: Generated based app_name and hostname: {app_name}/{gethostname()}/status
    • The topic to publish application status (ON/OFF) to
  • status_online
    • Default: ON
    • The payload to publish to status_topic when we are running
  • status_offline
    • Default: OFF
    • The payload to publish to status_topic when we are not running
  • max_inflight_messages
  • max_queued_messages
  • message_retry_sec
    • Deprecated. This argument is ignored and will be removed in a future release.

Useful functions

Gourd.publish(topic, payload=None, *, qos=None, **kwargs)

This function will let you publish messages to MQTT. You can delete a retained message by passing a payload of None.

All kwargs are passed directly to PaHo MQTT's publish()..

Gourd.loop_start()

This function will kick off Gourd in a separate thread, useful when you need to do something else in the main thread.

Normally you do not need to use this, you will run your program using gourd my_module:my_app. However, if you need to control the main thread instead of gourd this function will spawn a separate thread for gourd to run in.

subscribe Decorators

Once you've instaniated your gourd object you can use the subscribe decorator to subscribe to a topic. This will both subscribe to the specified topic and register your function to be called when a message for that topic is received. You can register multiple functions for the same topic and they will be called in the order they were registered.

    def subscribe(self, topic):

Logging

By default all logging will be sent to both the console and to the status_topic on the MQTT server.

Logging to a file

You can also log to a file with gourd --log-file <path>. There are more ways to control the log output, see gourd --help for details.

Logging to the MQTT server

By default your app will log to the topic {app_name}/{gethostname()}/debug. You can disable this behavior by passing log_mqtt=False when you instaniate Gourd.

Sending Log Messages

A logger has been provided for you to use, no setup needed. Just use app.log.<level>() to log your messages.

Last Will and Testament

By default your app will publish its online status and a LWT to {app_name}/{gethostname()}/status. You can disable this behavior by passing status_enabled=False when instaniating Gourd.

Reporting Bugs and Requesting Features

Please let us know about any bugs and/or feature requests you have: https://github.com/clueboard/gourd/issues

Contributing

Contributions are welcome! You don't need to open an issue first, if you've developed a new feature or fixed a bug in Gourd simply open a PR and we'll review it.

Please follow this checklist before submitting a PR:

  • Format your code: yapf -i -r .

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

gourd-1.0.2.tar.gz (14.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

gourd-1.0.2-py2.py3-none-any.whl (14.4 kB view details)

Uploaded Python 2Python 3

File details

Details for the file gourd-1.0.2.tar.gz.

File metadata

  • Download URL: gourd-1.0.2.tar.gz
  • Upload date:
  • Size: 14.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for gourd-1.0.2.tar.gz
Algorithm Hash digest
SHA256 bf491beb55e17d59b4b46a778c6f9cc64957cbfcf7b42a2a87cf6aacc5bc4cde
MD5 6b4beb8cab8417129e9f179f260f85d0
BLAKE2b-256 a22358cf9e6bed530c10e996847b4ef4974ca8396027f0938d1d0ec872c92a8f

See more details on using hashes here.

File details

Details for the file gourd-1.0.2-py2.py3-none-any.whl.

File metadata

  • Download URL: gourd-1.0.2-py2.py3-none-any.whl
  • Upload date:
  • Size: 14.4 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.3

File hashes

Hashes for gourd-1.0.2-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 536d458141801b5393815f736ab9260b4575dbc7bb871bdd5481e4218850468f
MD5 aba8d15a15522fff813e353b94313af0
BLAKE2b-256 26a3c5f752fc2c95edcc46526722744a41564857a57f18e0a631b64b0cd46ff3

See more details on using hashes here.

Supported by

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