Skip to main content

MQTT tools.

Project description

buildstatus coverage

MQTT Tools

MQTT tools in Python 3.7 and later.

Both the client and the broker implments MQTT version 5.0 using asyncio.

Client features:

  • Subscribe to and publish QoS level 0 topics.

  • Broker session resume (or clean start support) for less initial communication.

  • Topic aliases for smaller publish packets.

  • monitor, subscribe and publish command line commands.

Broker features:

  • Subscribe to and publish QoS level 0 topics.

  • Session resume (or clean start support) for less initial communication. Session state storage in RAM.

  • broker command line command.

Limitations:

There are lots of limitations in both the client and the broker. Here are a few of them:

  • QoS level 1 and 2 messages are not supported. A session state storage is required to do so, both in the client and the broker.

  • Authentication is not supported.

MQTT version 5.0 specification: https://docs.oasis-open.org/mqtt/mqtt/v5.0/os/mqtt-v5.0-os.html

Project homepage: https://github.com/eerimoq/mqttools

Documentation: https://mqttools.readthedocs.org/en/latest

Installation

pip install mqttools

Examples

There are plenty of examples in the examples folder.

Command line

Subscribe

Connect to given MQTT broker and subscribe to a topic. All received messages are printed to standard output.

$ mqttools subscribe /test/#
Connecting to 'localhost:1883'.

Topic:   /test
Message: 3131
Topic:   /test/mqttools/foo
Message: 626172

Publish

Connect to given MQTT broker and publish a message to a topic.

$ mqttools publish /test/mqttools/foo 626172
Connecting to 'localhost:1883'.

Published 1 message(s) in 0 seconds from 1 concurrent task(s).

Publish multiple messages as quickly as possible with --count to benchmark the client and the broker.

$ mqttools publish --count 100 /test/mqttools/foo
Connecting to 'localhost:1883'.

Published 100 message(s) in 0.39 seconds from 10 concurrent task(s).

Monitor

Connect to given MQTT broker and monitor given topics in a text based user interface.

$ mqttools monitor /test/#
https://github.com/eerimoq/mqttools/raw/master/docs/monitor.png

The menu at the bottom of the monitor shows the available commands.

  • Quit: Quit the monitor. Ctrl-C can be used as well.

  • Play/Pause: Toggle between playing and paused (or running and freezed).

Broker

Start a broker to serve clients.

$ mqttools broker
Starting a broker at 'localhost:1883'.

Scripting

Subscribe

An example connecting to an MQTT broker, subscribing to the topic /test/#, and printing all published messaged.

import asyncio
import mqttools

async def subscriber():
    client = mqttools.Client('localhost', 1883)

    await client.start()
    await client.subscribe('/test/#')

    while True:
        topic, message = await client.messages.get()

        if topic is None:
            print('Broker connection lost!')
            break

        print(f'Topic:   {topic}')
        print(f'Message: {message}')

asyncio.run(subscriber())

Publish

An example connecting to an MQTT broker and publishing the message bar to the topic /test/mqttools/foo.

import asyncio
import mqttools

async def publisher():
    client = mqttools.Client('localhost', 1883)

    await client.start()
    client.publish('/test/mqttools/foo', b'bar')
    await client.stop()

asyncio.run(publisher())

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

mqttools-0.33.0.tar.gz (28.8 kB view details)

Uploaded Source

Built Distribution

mqttools-0.33.0-py2.py3-none-any.whl (24.5 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file mqttools-0.33.0.tar.gz.

File metadata

  • Download URL: mqttools-0.33.0.tar.gz
  • Upload date:
  • Size: 28.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for mqttools-0.33.0.tar.gz
Algorithm Hash digest
SHA256 c13c6f032c94c7458233f4e04d8b7bc9dbc37dd5c6842baf92e208b46a665c59
MD5 8dc7fb749a3564aceb319b1bc2d41a8a
BLAKE2b-256 8a71d52f84d3d4663cbbf28b4778f591efb7738d11a71587f4d35c499c5b0113

See more details on using hashes here.

Provenance

File details

Details for the file mqttools-0.33.0-py2.py3-none-any.whl.

File metadata

  • Download URL: mqttools-0.33.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 24.5 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3

File hashes

Hashes for mqttools-0.33.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 733505fda0eacbd4be9460d0164838ddaf9d12b5808400497ccced7cf0a0ee3d
MD5 20718b595ce65faef4361af68d68ed68
BLAKE2b-256 fa91efb4318ee8f342a2cd24059f34fcdfe77c7c398ef5b65ab865fd1d6eaa87

See more details on using hashes here.

Provenance

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