gmqtt


Namegmqtt JSON
Version 0.6.16 PyPI version JSON
download
home_pagehttps://github.com/wialon/gmqtt
SummaryClient for MQTT protocol
upload_time2024-05-02 12:11:02
maintainerNone
docs_urlNone
authorMikhail Turchunovich
requires_python>=3.5
licenseMIT
keywords gurtam mqtt client.
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![PyPI version](https://badge.fury.io/py/gmqtt.svg)](https://badge.fury.io/py/gmqtt)
[![build status](https://github.com/wialon/gmqtt/actions/workflows/python-package.yml/badge.svg)](https://github.com/github/wialon/gmqtt/workflows/python-package.yml/badge.svg)
[![Python versions](https://img.shields.io/badge/python-3.7%20%7C%203.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-brightgreen)](https://img.shields.io/badge/python-3.7%20%7C%203.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-brightgreen)
[![codecov](https://codecov.io/gh/wialon/gmqtt/branch/master/graph/badge.svg)](https://codecov.io/gh/wialon/gmqtt)


### gmqtt: Python async MQTT client implementation.

![](./static/logo.png)

### Installation 

The latest stable version is available in the Python Package Index (PyPi) and can be installed using
```bash
pip3 install gmqtt
```


### Usage
#### Getting Started

Here is a very simple example that subscribes to the broker TOPIC topic and prints out the resulting messages:

```python
import asyncio
import os
import signal
import time

from gmqtt import Client as MQTTClient

# gmqtt also compatibility with uvloop  
import uvloop
asyncio.set_event_loop_policy(uvloop.EventLoopPolicy())


STOP = asyncio.Event()


def on_connect(client, flags, rc, properties):
    print('Connected')
    client.subscribe('TEST/#', qos=0)


def on_message(client, topic, payload, qos, properties):
    print('RECV MSG:', payload)


def on_disconnect(client, packet, exc=None):
    print('Disconnected')

def on_subscribe(client, mid, qos, properties):
    print('SUBSCRIBED')

def ask_exit(*args):
    STOP.set()

async def main(broker_host, token):
    client = MQTTClient("client-id")

    client.on_connect = on_connect
    client.on_message = on_message
    client.on_disconnect = on_disconnect
    client.on_subscribe = on_subscribe

    client.set_auth_credentials(token, None)
    await client.connect(broker_host)

    client.publish('TEST/TIME', str(time.time()), qos=1)

    await STOP.wait()
    await client.disconnect()


if __name__ == '__main__':
    loop = asyncio.get_event_loop()

    host = 'mqtt.flespi.io'
    token = os.environ.get('FLESPI_TOKEN')

    loop.add_signal_handler(signal.SIGINT, ask_exit)
    loop.add_signal_handler(signal.SIGTERM, ask_exit)

    loop.run_until_complete(main(host, token))
``` 

### MQTT Version 5.0
gmqtt supports MQTT version 5.0 protocol

#### Version setup
Version 5.0 is used by default. If your broker does not support 5.0 protocol version and responds with proper CONNACK reason code, client will downgrade to 3.1 and reconnect automatically. Note, that some brokers just fail to parse the 5.0 format CONNECT packet, so first check manually if your broker handles this properly. 
You can also force version in connect method:
```python
from gmqtt.mqtt.constants import MQTTv311
client = MQTTClient('clientid')
client.set_auth_credentials(token, None)
await client.connect(broker_host, 1883, keepalive=60, version=MQTTv311)
```

#### Properties
MQTT 5.0 protocol allows to include custom properties into packages, here is example of passing response topic property in published message:
```python

TOPIC = 'testtopic/TOPIC'

def on_connect(client, flags, rc, properties):
    client.subscribe(TOPIC, qos=1)
    print('Connected')

def on_message(client, topic, payload, qos, properties):
    print('RECV MSG:', topic, payload.decode(), properties)

async def main(broker_host, token):
    client = MQTTClient('asdfghjk')
    client.on_message = on_message
    client.on_connect = on_connect
    client.set_auth_credentials(token, None)
    await client.connect(broker_host, 1883, keepalive=60)
    client.publish(TOPIC, 'Message payload', response_topic='RESPONSE/TOPIC')

    await STOP.wait()
    await client.disconnect()
```
##### Connect properties
Connect properties are passed to `Client` object as kwargs (later they are stored together with properties received from broker in `client.properties` field). See example below.
* `session_expiry_interval` - `int` Session expiry interval in seconds. If the Session Expiry Interval is absent the value 0 is used. If it is set to 0, or is absent, the Session ends when the Network Connection is closed. If the Session Expiry Interval is 0xFFFFFFFF (max possible value), the Session does not expire.
* `receive_maximum` - `int` The Client uses this value to limit the number of QoS 1 and QoS 2 publications that it is willing to process concurrently.
* `user_property` - `tuple(str, str)` This property may be used to provide additional diagnostic or other information (key-value pairs).
* `maximum_packet_size` - `int` The Client uses the Maximum Packet Size (in bytes) to inform the Server that it will not process packets exceeding this limit.

Example:
```python
client = gmqtt.Client("lenkaklient", receive_maximum=24000, session_expiry_interval=60, user_property=('myid', '12345'))
```

##### Publish properties
This properties will be also sent in publish packet from broker, they will be passed to `on_message` callback.
* `message_expiry_interval` - `int` If present, the value is the lifetime of the Application Message in seconds.
* `content_type` - `unicode` UTF-8 Encoded String describing the content of the Application Message. The value of the Content Type is defined by the sending and receiving application.
* `user_property` - `tuple(str, str)`
* `subscription_identifier` - `int` (see subscribe properties) sent by broker
* `topic_alias` - `int` First client publishes messages with topic string and kwarg topic_alias. After this initial message client can publish message with empty string topic and same topic_alias kwarg.

Example:
```python
def on_message(client, topic, payload, qos, properties):
    # properties example here: {'content_type': ['json'], 'user_property': [('timestamp', '1524235334.881058')], 'message_expiry_interval': [60], 'subscription_identifier': [42, 64]}
    print('RECV MSG:', topic, payload, properties)

client.publish('TEST/TIME', str(time.time()), qos=1, retain=True, message_expiry_interval=60, content_type='json')
```

##### Subscribe properties
* `subscription_identifier` - `int` If the Client specified a Subscription Identifier for any of the overlapping subscriptions the Server MUST send those Subscription Identifiers in the message which is published as the result of the subscriptions.

### Reconnects
By default, connected MQTT client will always try to reconnect in case of lost connections. Number of reconnect attempts is unlimited.
If you want to change this behaviour, do the following:
```python
client = MQTTClient("client-id")
client.set_config({'reconnect_retries': 10, 'reconnect_delay': 60})
```
Code above will set number of reconnect attempts to 10 and delay between reconnect attempts to 1min (60s). By default `reconnect_delay=6` and  `reconnect_retries=-1` which stands for infinity.
Note that manually calling `await client.disconnect()` will set `reconnect_retries` for 0, which will stop auto reconnect.

### Asynchronous on_message callback
You can define asynchronous on_message callback.
Note that it must return valid PUBACK code (`0` is success code, see full list in [constants](gmqtt/mqtt/constants.py#L69))
```python
async def on_message(client, topic, payload, qos, properties):
    pass
    return 0
```

### Other examples
Check [examples directory](examples) for more use cases.

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/wialon/gmqtt",
    "name": "gmqtt",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.5",
    "maintainer_email": null,
    "keywords": "Gurtam MQTT client.",
    "author": "Mikhail Turchunovich",
    "author_email": "mitu@gurtam.com",
    "download_url": "https://files.pythonhosted.org/packages/aa/b2/8beaf329ad822409a89cef9beced927dbe9b9aa8887d9859ac5e3d2d4c19/gmqtt-0.6.16.tar.gz",
    "platform": null,
    "description": "[![PyPI version](https://badge.fury.io/py/gmqtt.svg)](https://badge.fury.io/py/gmqtt)\n[![build status](https://github.com/wialon/gmqtt/actions/workflows/python-package.yml/badge.svg)](https://github.com/github/wialon/gmqtt/workflows/python-package.yml/badge.svg)\n[![Python versions](https://img.shields.io/badge/python-3.7%20%7C%203.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-brightgreen)](https://img.shields.io/badge/python-3.7%20%7C%203.8%20%7C%203.9%20%7C%203.10%20%7C%203.11%20%7C%203.12-brightgreen)\n[![codecov](https://codecov.io/gh/wialon/gmqtt/branch/master/graph/badge.svg)](https://codecov.io/gh/wialon/gmqtt)\n\n\n### gmqtt: Python async MQTT client implementation.\n\n![](./static/logo.png)\n\n### Installation \n\nThe latest stable version is available in the Python Package Index (PyPi) and can be installed using\n```bash\npip3 install gmqtt\n```\n\n\n### Usage\n#### Getting Started\n\nHere is a very simple example that subscribes to the broker TOPIC topic and prints out the resulting messages:\n\n```python\nimport asyncio\nimport os\nimport signal\nimport time\n\nfrom gmqtt import Client as MQTTClient\n\n# gmqtt also compatibility with uvloop  \nimport uvloop\nasyncio.set_event_loop_policy(uvloop.EventLoopPolicy())\n\n\nSTOP = asyncio.Event()\n\n\ndef on_connect(client, flags, rc, properties):\n    print('Connected')\n    client.subscribe('TEST/#', qos=0)\n\n\ndef on_message(client, topic, payload, qos, properties):\n    print('RECV MSG:', payload)\n\n\ndef on_disconnect(client, packet, exc=None):\n    print('Disconnected')\n\ndef on_subscribe(client, mid, qos, properties):\n    print('SUBSCRIBED')\n\ndef ask_exit(*args):\n    STOP.set()\n\nasync def main(broker_host, token):\n    client = MQTTClient(\"client-id\")\n\n    client.on_connect = on_connect\n    client.on_message = on_message\n    client.on_disconnect = on_disconnect\n    client.on_subscribe = on_subscribe\n\n    client.set_auth_credentials(token, None)\n    await client.connect(broker_host)\n\n    client.publish('TEST/TIME', str(time.time()), qos=1)\n\n    await STOP.wait()\n    await client.disconnect()\n\n\nif __name__ == '__main__':\n    loop = asyncio.get_event_loop()\n\n    host = 'mqtt.flespi.io'\n    token = os.environ.get('FLESPI_TOKEN')\n\n    loop.add_signal_handler(signal.SIGINT, ask_exit)\n    loop.add_signal_handler(signal.SIGTERM, ask_exit)\n\n    loop.run_until_complete(main(host, token))\n``` \n\n### MQTT Version 5.0\ngmqtt supports MQTT version 5.0 protocol\n\n#### Version setup\nVersion 5.0 is used by default. If your broker does not support 5.0 protocol version and responds with proper CONNACK reason code, client will downgrade to 3.1 and reconnect automatically. Note, that some brokers just fail to parse the 5.0 format CONNECT packet, so first check manually if your broker handles this properly. \nYou can also force version in connect method:\n```python\nfrom gmqtt.mqtt.constants import MQTTv311\nclient = MQTTClient('clientid')\nclient.set_auth_credentials(token, None)\nawait client.connect(broker_host, 1883, keepalive=60, version=MQTTv311)\n```\n\n#### Properties\nMQTT 5.0 protocol allows to include custom properties into packages, here is example of passing response topic property in published message:\n```python\n\nTOPIC = 'testtopic/TOPIC'\n\ndef on_connect(client, flags, rc, properties):\n    client.subscribe(TOPIC, qos=1)\n    print('Connected')\n\ndef on_message(client, topic, payload, qos, properties):\n    print('RECV MSG:', topic, payload.decode(), properties)\n\nasync def main(broker_host, token):\n    client = MQTTClient('asdfghjk')\n    client.on_message = on_message\n    client.on_connect = on_connect\n    client.set_auth_credentials(token, None)\n    await client.connect(broker_host, 1883, keepalive=60)\n    client.publish(TOPIC, 'Message payload', response_topic='RESPONSE/TOPIC')\n\n    await STOP.wait()\n    await client.disconnect()\n```\n##### Connect properties\nConnect properties are passed to `Client` object as kwargs (later they are stored together with properties received from broker in `client.properties` field). See example below.\n* `session_expiry_interval` - `int` Session expiry interval in seconds. If the Session Expiry Interval is absent the value 0 is used. If it is set to 0, or is absent, the Session ends when the Network Connection is closed. If the Session Expiry Interval is 0xFFFFFFFF (max possible value), the Session does not expire.\n* `receive_maximum` - `int` The Client uses this value to limit the number of QoS 1 and QoS 2 publications that it is willing to process concurrently.\n* `user_property` - `tuple(str, str)` This property may be used to provide additional diagnostic or other information (key-value pairs).\n* `maximum_packet_size` - `int` The Client uses the Maximum Packet Size (in bytes) to inform the Server that it will not process packets exceeding this limit.\n\nExample:\n```python\nclient = gmqtt.Client(\"lenkaklient\", receive_maximum=24000, session_expiry_interval=60, user_property=('myid', '12345'))\n```\n\n##### Publish properties\nThis properties will be also sent in publish packet from broker, they will be passed to `on_message` callback.\n* `message_expiry_interval` - `int` If present, the value is the lifetime of the Application Message in seconds.\n* `content_type` - `unicode` UTF-8 Encoded String describing the content of the Application Message. The value of the Content Type is defined by the sending and receiving application.\n* `user_property` - `tuple(str, str)`\n* `subscription_identifier` - `int` (see subscribe properties) sent by broker\n* `topic_alias` - `int` First client publishes messages with topic string and kwarg topic_alias. After this initial message client can publish message with empty string topic and same topic_alias kwarg.\n\nExample:\n```python\ndef on_message(client, topic, payload, qos, properties):\n    # properties example here: {'content_type': ['json'], 'user_property': [('timestamp', '1524235334.881058')], 'message_expiry_interval': [60], 'subscription_identifier': [42, 64]}\n    print('RECV MSG:', topic, payload, properties)\n\nclient.publish('TEST/TIME', str(time.time()), qos=1, retain=True, message_expiry_interval=60, content_type='json')\n```\n\n##### Subscribe properties\n* `subscription_identifier` - `int` If the Client specified a Subscription Identifier for any of the overlapping subscriptions the Server MUST send those Subscription Identifiers in the message which is published as the result of the subscriptions.\n\n### Reconnects\nBy default, connected MQTT client will always try to reconnect in case of lost connections. Number of reconnect attempts is unlimited.\nIf you want to change this behaviour, do the following:\n```python\nclient = MQTTClient(\"client-id\")\nclient.set_config({'reconnect_retries': 10, 'reconnect_delay': 60})\n```\nCode above will set number of reconnect attempts to 10 and delay between reconnect attempts to 1min (60s). By default `reconnect_delay=6` and  `reconnect_retries=-1` which stands for infinity.\nNote that manually calling `await client.disconnect()` will set `reconnect_retries` for 0, which will stop auto reconnect.\n\n### Asynchronous on_message callback\nYou can define asynchronous on_message callback.\nNote that it must return valid PUBACK code (`0` is success code, see full list in [constants](gmqtt/mqtt/constants.py#L69))\n```python\nasync def on_message(client, topic, payload, qos, properties):\n    pass\n    return 0\n```\n\n### Other examples\nCheck [examples directory](examples) for more use cases.\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Client for MQTT protocol",
    "version": "0.6.16",
    "project_urls": {
        "Download": "https://github.com/wialon/gmqtt",
        "Homepage": "https://github.com/wialon/gmqtt"
    },
    "split_keywords": [
        "gurtam",
        "mqtt",
        "client."
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "dfcffa764c2f21097b6baee5a70400cea8e0b1adf6e9502e0b4f2d09a8694895",
                "md5": "b0ba8898f4fb2b847d8a8d6b1363792a",
                "sha256": "577f9170a88c98c0b16e9ca5cc895d5a3ee82615ace628757454500e565bd12f"
            },
            "downloads": -1,
            "filename": "gmqtt-0.6.16-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b0ba8898f4fb2b847d8a8d6b1363792a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.5",
            "size": 30704,
            "upload_time": "2024-05-02T12:10:59",
            "upload_time_iso_8601": "2024-05-02T12:10:59.829398Z",
            "url": "https://files.pythonhosted.org/packages/df/cf/fa764c2f21097b6baee5a70400cea8e0b1adf6e9502e0b4f2d09a8694895/gmqtt-0.6.16-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "aab28beaf329ad822409a89cef9beced927dbe9b9aa8887d9859ac5e3d2d4c19",
                "md5": "52a06bb94bd57f28d5ebf94637fe5cfe",
                "sha256": "ddd1fdc1c6ae604e74377cf70e99f067e579c03c1c71a6acd494e199e93b7fa4"
            },
            "downloads": -1,
            "filename": "gmqtt-0.6.16.tar.gz",
            "has_sig": false,
            "md5_digest": "52a06bb94bd57f28d5ebf94637fe5cfe",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.5",
            "size": 27336,
            "upload_time": "2024-05-02T12:11:02",
            "upload_time_iso_8601": "2024-05-02T12:11:02.863547Z",
            "url": "https://files.pythonhosted.org/packages/aa/b2/8beaf329ad822409a89cef9beced927dbe9b9aa8887d9859ac5e3d2d4c19/gmqtt-0.6.16.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-05-02 12:11:02",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "wialon",
    "github_project": "gmqtt",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "gmqtt"
}
        
Elapsed time: 0.24834s