Skip to main content

Interface between MQTT broker and ASGI

Project description

asgimqtt is a simple MQTT interface for ASGI.

Usage

Connect the server to a running MQTT broker:

asgimqtt --host localhost --port 1883 django_project.asgi:channel_layer

In your Django code:

# routing.py
channels_routing = [
    route("mqtt.sub", mqtt_consumer),
]

Note: you can only receive messages published in MQTT broker (channel mqtt.sub).

The keys are:

  • host: host of the MQTT broker

  • port: port of the MQTT broker

  • topic: topic of the MQTT message

  • payload: payload of the MQTT message

  • qos: quality of service of the MQTT message (0, 1 or 2)

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

asgimqtt-0.2.0.tar.gz (3.3 kB view hashes)

Uploaded Source

Built Distribution

asgimqtt-0.2.0-py2.py3-none-any.whl (5.3 kB view hashes)

Uploaded Python 2 Python 3

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