Skip to main content

The idiomatic asyncio MQTT client, wrapped around paho-mqtt

Project description

The idiomatic asyncio MQTT client 🙌

(formerly known as asyncio-mqtt)

License: BSD-3-Clause PyPI version Supported Python versions PyPI downloads test docs Coverage Typing: strict Code style: Ruff Ruff

Write code like this:

Publish

async with Client("test.mosquitto.org") as client:
    await client.publish("humidity/outside", payload=0.38)

Subscribe

async with Client("test.mosquitto.org") as client:
    await client.subscribe("humidity/#")
    async for message in client.messages:
        print(message.payload)

aiomqtt combines the stability of the time-proven paho-mqtt library with an idiomatic asyncio interface:

  • No more callbacks! 👍
  • No more return codes (welcome to the MqttError)
  • Graceful disconnection (forget about on_unsubscribe, on_disconnect, etc.)
  • Supports MQTT versions 5.0, 3.1.1 and 3.1
  • Fully type-hinted
  • Did we mention no more callbacks?

Read the documentation at sbtinstruments.github.io/aiomqtt


Installation

aiomqtt can be installed via pip install aiomqtt. The only dependency is paho-mqtt.

If you can't wait for the latest version, you can install aiomqtt directly from GitHub with:

pip install git+https://github.com/sbtinstruments/aiomqtt

Note for Windows users

Since Python 3.8, the default asyncio event loop is the ProactorEventLoop. Said loop doesn't support the add_reader method that is required by aiomqtt. Please switch to an event loop that supports the add_reader method such as the built-in SelectorEventLoop:

# Change to the "Selector" event loop if platform is Windows
if sys.platform.lower() == "win32" or os.name.lower() == "nt":
    from asyncio import set_event_loop_policy, WindowsSelectorEventLoopPolicy
    set_event_loop_policy(WindowsSelectorEventLoopPolicy())
# Run your async application as usual
asyncio.run(main())

License

This project is licensed under the BSD 3-clause License.

Note that the underlying paho-mqtt library is dual-licensed. One of the licenses is the Eclipse Distribution License v1.0, which is almost identical to the BSD 3-clause License. The differences are:

  • One use of "COPYRIGHT OWNER" (EDL) instead of "COPYRIGHT HOLDER" (BSD)
  • One use of "Eclipse Foundation, Inc." (EDL) instead of "copyright holder" (BSD)

Contributing

We're very happy about contributions to aiomqtt! ✨ You can get started by reading CONTRIBUTING.md.

Versioning

This project adheres to Semantic Versioning. Breaking changes will only occur in major X.0.0 releases.

Changelog

The changelog lives in CHANGELOG.md. It follows the principles of Keep a Changelog.

Related projects

Is aiomqtt not what you're looking for? There are a few other clients you can try:

  • paho-mqtt: Synchronous client
  • micropython-mqtt: Asynchronous client for microcontrollers in MicroPython
  • gmqtt: Asynchronous client
  • fastapi-mqtt: Asynchronous wrapper around gmqtt; Simplifies integration with FastAPI
  • amqtt: Asynchronous client; Includes a broker
  • trio-paho-mqtt: Asynchronous wrapper around paho-mqtt; Based on trio instead of asyncio

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

aiomqtt-2.0.1.tar.gz (16.9 kB view details)

Uploaded Source

Built Distribution

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

aiomqtt-2.0.1-py3-none-any.whl (16.0 kB view details)

Uploaded Python 3

File details

Details for the file aiomqtt-2.0.1.tar.gz.

File metadata

  • Download URL: aiomqtt-2.0.1.tar.gz
  • Upload date:
  • Size: 16.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for aiomqtt-2.0.1.tar.gz
Algorithm Hash digest
SHA256 60f6451c8ab7235cfb392b1b0cab398e9bc6040f4b140628c0615371abcde15f
MD5 26aa7156e8ba8859828fa1ab5445da18
BLAKE2b-256 1c93d8aae771d12ab974112868e46921215668f1d612a739e11a8b59b4ce9e33

See more details on using hashes here.

File details

Details for the file aiomqtt-2.0.1-py3-none-any.whl.

File metadata

  • Download URL: aiomqtt-2.0.1-py3-none-any.whl
  • Upload date:
  • Size: 16.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.2

File hashes

Hashes for aiomqtt-2.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 7c26a867212366ae0841571e6c2d06cebc00c2de029475b920c2cd7396aeacea
MD5 379499a8caf11c1cf56afa39841e6b0f
BLAKE2b-256 c8cee2353bb4f2d4232981e5aff348c0bf8e2ca1e3abaff4278960952e603825

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