Non-blocking MQTT 3.1.1 client (QoS 0+1) for CircuitPython, MicroPython, and CPython.
Project description
chumicro-mqtt
A non-blocking MQTT 3.1.1 client (QoS 0 + 1) that fits inside your runner tick.
QoS 0 + QoS 1, last-will, retain, wildcard topic matching, automatic per-device topic prefixing, a bounded pre-connect publish queue, and a two-tier inbound size model that keeps heap usage bounded on memory-tight boards — runner-shaped, no threads, no async. A configurable per-tick recv budget keeps a large inbound blob from monopolising the loop, and failed QoS-1 publishes roll back the packet-id allocation cleanly on backpressure. Built on chumicro-sockets (TCP + TLS) and chumicro-timing (ticks).
Part of the ChuMicro family — small, focused Python libraries for microcontrollers and laptops. Browse all libraries.
Install
# CircuitPython (after `circup bundle-add ChuMicro/ChuMicro-Bundle-Experimental`)
circup install chumicro_mqtt
# MicroPython
mpremote mip install github:ChuMicro/ChuMicro-Bundle-Experimental/chumicro_mqtt
# CPython
pip install chumicro-mqtt-experimental
For bundle setup, pre-compiled .mpy bundles, the experimental channel, and details on PyPI naming, see the chumicro INSTALL guide.
Quick example
from chumicro_timing import ticks_ms
from chumicro_mqtt import MQTTClient
# On CircuitPython pass radio=wifi.radio; the kwarg is ignored on MP / CPython.
# from_config builds the transport factory: the client dials the broker
# non-blocking (one connect phase per tick) and self-heals after drops.
client = MQTTClient.from_config(
{"mqtt.broker.host": "broker.example.com", "mqtt.broker.port": 1883},
radio=wifi.radio,
)
client.on_message = lambda topic, payload: print(topic, payload)
client.connect()
# Drive from a tick loop.
while True:
now = ticks_ms()
if client.check(now):
client.handle(now)
QoS 0 + QoS 1 are implemented; QoS 2 raises UnsupportedQoSError. Last-will, retained messages, wildcard topic matching (topic_matches), and a structured oversized-message policy are all built in.
What's included
| Symbol | Purpose |
|---|---|
MQTTClient(socket, *, client_id, ...) |
Main client. Runner-shaped (check(now_ms)/handle(now_ms)). Topics go on the wire exactly as written. |
client.publish(topic, payload, *, qos=0, retain=False, on_publish=None) |
QoS 0 or 1. Before CONNECTED, the when_disconnected policy applies (queue / raise). |
client.subscribe(topic, qos=0, *, on_subscribe=None) |
Single-topic subscribe. A declaration valid in any state — call it before connect() and the first CONNACK sends it (self-heal reconnects replay it); on_subscribe fires once on the granting SUBACK. |
client.unsubscribe(topic, *, on_unsubscribe=None) |
Mirror of subscribe: retracts the declaration in any state, sends UNSUBSCRIBE when CONNECTED. |
client.on_message + topic_matches(topic, pattern) |
Inbound routing: the catch-all callback plus the public wildcard matcher (+ one segment, # trailing tail). |
client.connect() / .disconnect() |
Lifecycle. |
MQTTClient(..., when_disconnected="queue", pre_connect_queue_size=8) |
Pre-connect publish policy ("queue" / "raise") and the queue bound. |
WhenOversized.{DROP_SILENT,DROP_WITH_EVENT,DISCONNECT} |
Policy for inbound PUBLISHes larger than rx_buffer_size. |
ProtocolState.{DISCONNECTED,AWAITING_TRANSPORT,CONNECTING,CONNECTED,FAILED} |
Lifecycle states. AWAITING_TRANSPORT appears while a transport_factory drives the transport up. |
MQTTBackpressureError |
Raised when an outbound publish overflows max_tx_queue_size (or the pre-connect queue under "queue") — caller's signal to drain via handle() and retry. |
MQTTError / MQTTConnectError / MQTTProtocolError / UnsupportedQoSError |
Exceptions. |
topic_matches(topic, pattern) |
Public wildcard matcher. Encoder + decoder primitives (encode_publish, encode_varlen, decode_varlen, encode_string) stay internal to chumicro_mqtt._wire. |
Tuning for tick-latency vs throughput
handle() does exactly one recv_into and one send per tick, so each call yields back to the runner after one socket syscall. Three MQTTClient(...) constructor knobs let you trade tick fairness for throughput:
| Knob | Default | What it bounds |
|---|---|---|
recv_budget_per_tick |
1024 (bytes) |
Cap on the single per-tick recv_into call. Without it, an oversized-tier rolling drain of a multi-KB inbound PUBLISH would draw the whole payload in one syscall; the cap means it arrives across several ticks instead, keeping each tick short. Raise for fast big-blob ingestion at the cost of per-syscall latency. |
max_tx_queue_size |
20 packets |
Hard cap on pending outbound packets. Sized for the runner-shaped sensor profile (publish every N seconds; queue stays near zero). Appending past the cap raises MQTTBackpressureError; protocol-internal traffic (PUBACK responses, retransmits, PINGREQ) bypasses the cap so QoS-1 / keepalive contracts hold. Failed QoS-1 publishes roll back the packet_id allocation cleanly so the id pool isn't leaked on backpressure. Raise for bursty publishers; each slot pins ~8 bytes long-lived on MP / CP. |
send_timeout_seconds |
inherits ack_timeout_seconds (5 s) |
Maximum time the socket can stay non-writable with a packet queued before the client transitions to FAILED. Re-arms on every successful send -- a steady drip of small sends never trips it, only a stalled socket does. Catches NAT-style silent-drops on the outbound path that would otherwise let the queue grow until MQTTBackpressureError. |
Where this fits
Depends on chumicro-sockets (TCP + TLS) and chumicro-timing for ticks. Used directly in app code; no other ChuMicro library depends on it.
Platform support
Works on CPython, MicroPython, and CircuitPython.
Examples
| Example | What it shows |
|---|---|
telemetry.py |
Periodic QoS-1 publish on a real CP/MP board. Brings wifi up, connects to a broker, subscribes to a command topic, publishes a synthetic reading every N seconds while an LED-blink counter verifies the publish never blocks waiting for PUBACK. Reads wifi + broker config from runtime_config.msgpack (chumicro-workspace) with constants fallback. Broker host/port must be set explicitly — the library refuses to silently dial a third-party broker. Cross-runtime (CP + MP). |
bench.py |
Self-driving validation bench. Deploy + watch serial — the device runs the scenarios end-to-end (steady inline, oversized drain, oversize-topic, QoS-1 round-trip, sustained burst, keepalive) against a real broker and prints a pass/fail summary table. Used to confirm the library's heap-bounded oversize handling and the two-tier inbound model behave as advertised on a 256 KB-RAM-class board. Optional companion bench_host.py (host-side, needs pip install paho-mqtt) captures the verdict from the broker and can publish a 64 KB hostile payload for extra oversized-tier stress. |
Wiring wifi + broker config for examples and functional tests
The hardware-prefixed examples + real-network suites in functional_tests/test_real_*.py need wifi credentials and a broker host / port. See docs/wiring-wifi-credentials.md for the workspace-based and raw single-file paths — the telemetry example reads [wifi] for credentials and [telemetry] for the broker host / port / topic. The library itself never reads TOML — it takes a chumicro-sockets socket and goes; config wiring is application-layer.
Memory + leak testing
The host-side suite under tests/test_memory_pressure_pytest.py uses tracemalloc to verify the client doesn't leak across hot paths (QoS 0 / QoS 1 publish, inbound recv, subscribe/unsubscribe cycles).
Contributing
Working on chumicro-mqtt itself? Clone the mono-repo if you haven't already — the rest of the workflow assumes you're inside that workspace.
pip install -e .[test]
pytest tests/ # host-side tests
pytest functional_tests/ # on-device tests (needs a board registered in devices.yml)
Register a board before running functional tests: chumicro-workspace add-device <id> --address <port>.
Docs
📖 Stable docs · Experimental docs
Find this library
- PyPI: chumicro-mqtt
- Bundle: ChuMicro-Bundle (CircuitPython & MicroPython)
- Experimental bundle: ChuMicro-Bundle-Experimental
- Source: libraries/mqtt
License
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file chumicro_mqtt_experimental-0.28.0.tar.gz.
File metadata
- Download URL: chumicro_mqtt_experimental-0.28.0.tar.gz
- Upload date:
- Size: 100.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
07700b7d2a54502139e624d1015d95d0e132ea7ad5fb866601e3a3968e9a56e1
|
|
| MD5 |
96bf623eac86a385ebd2815d5140a01f
|
|
| BLAKE2b-256 |
8cfc642aa0ab2255cabb5f0267504dec6143f3afb73b7703d6f2d8965580bbdc
|
Provenance
The following attestation bundles were made for chumicro_mqtt_experimental-0.28.0.tar.gz:
Publisher:
release.yml on ChuMicro/ChuMicro
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
chumicro_mqtt_experimental-0.28.0.tar.gz -
Subject digest:
07700b7d2a54502139e624d1015d95d0e132ea7ad5fb866601e3a3968e9a56e1 - Sigstore transparency entry: 2200056997
- Sigstore integration time:
-
Permalink:
ChuMicro/ChuMicro@c44a9af471badb82744a9557b3fab932936e1128 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/ChuMicro
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@c44a9af471badb82744a9557b3fab932936e1128 -
Trigger Event:
push
-
Statement type:
File details
Details for the file chumicro_mqtt_experimental-0.28.0-py3-none-any.whl.
File metadata
- Download URL: chumicro_mqtt_experimental-0.28.0-py3-none-any.whl
- Upload date:
- Size: 26.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7eb4fbbb901e0b953a55c1cdc8b2ee4c83e552015f00f67985a60ce66dafd1ca
|
|
| MD5 |
376ba17ce57ba652ebc5b97ffd482e44
|
|
| BLAKE2b-256 |
24ba9e87cd5e9a1089b099b12fb7f5c98fb8bc30ae4eceba7e074c6b40ce5991
|
Provenance
The following attestation bundles were made for chumicro_mqtt_experimental-0.28.0-py3-none-any.whl:
Publisher:
release.yml on ChuMicro/ChuMicro
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
chumicro_mqtt_experimental-0.28.0-py3-none-any.whl -
Subject digest:
7eb4fbbb901e0b953a55c1cdc8b2ee4c83e552015f00f67985a60ce66dafd1ca - Sigstore transparency entry: 2200057451
- Sigstore integration time:
-
Permalink:
ChuMicro/ChuMicro@c44a9af471badb82744a9557b3fab932936e1128 -
Branch / Tag:
refs/heads/main - Owner: https://github.com/ChuMicro
-
Access:
private
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@c44a9af471badb82744a9557b3fab932936e1128 -
Trigger Event:
push
-
Statement type: