Skip to main content

The idiomatic asyncio MQTT client

Project description

The idiomatic asyncio MQTT client 🙌

PyPI downloads PyPI version Supported Python versions

Documentation: https://aiomqtt.bo3hm.com


Write code like this:

Publish

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

Subscribe

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

Key features

  • 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?

Installation

pip install aiomqtt

The only dependency is paho-mqtt.

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

pip install git+https://github.com/empicano/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 only 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 happy about contributions to aiomqtt! 🎉 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

See CHANGELOG.md, which follows the principles of Keep a Changelog.

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.5.0.tar.gz (86.5 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.5.0-py3-none-any.whl (16.0 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: aiomqtt-2.5.0.tar.gz
  • Upload date:
  • Size: 86.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for aiomqtt-2.5.0.tar.gz
Algorithm Hash digest
SHA256 70e181c140a54ae736394efe2b9e865f665551a5417f6957456cc46010487b21
MD5 0b3017b65b5bf9a991c2e5dec7c715cc
BLAKE2b-256 dbb5798e4855d17f0f3a2e2ed21c07473fcb4bb45993116693d0f68553927e2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiomqtt-2.5.0.tar.gz:

Publisher: publish.yml on empicano/aiomqtt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

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

File hashes

Hashes for aiomqtt-2.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 65dabeafeeee7b88864361ae9a118d81bd27082093f32f670a5c5fab17de8cf2
MD5 5a81d006c22e9e6c5979ef6772b553c0
BLAKE2b-256 84241d5d7d89906db1a94b5029942c2fd909cf8e8551b288f56c03053d5615f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for aiomqtt-2.5.0-py3-none-any.whl:

Publisher: publish.yml on empicano/aiomqtt

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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