wok annotate python-paho-mqtt/description.txt @ rev 25463

Up expat (2.4.9) fixes CVE-2022-40674
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Sep 29 20:05:23 2022 +0000 (20 months ago)
parents
children
rev   line source
Hans-G?nter@25211 1 This document describes the source code for the Eclipse Paho MQTT Python
Hans-G?nter@25211 2 client library, which implements versions 5.0, 3.1.1, and 3.1 of the MQTT
Hans-G?nter@25211 3 protocol.
Hans-G?nter@25211 4
Hans-G?nter@25211 5 This code provides a client class which enable applications to connect to
Hans-G?nter@25211 6 an MQTT broker to publish messages, and to subscribe to topics and receive
Hans-G?nter@25211 7 published messages.
Hans-G?nter@25211 8 It also provides some helper functions to make publishing one off messages
Hans-G?nter@25211 9 to an MQTT server very straightforward.
Hans-G?nter@25211 10
Hans-G?nter@25211 11 It supports Python 2.7.9+ or 3.6+.
Hans-G?nter@25211 12
Hans-G?nter@25211 13 The MQTT protocol is a machine-to-machine (M2M) or "Internet of Things"
Hans-G?nter@25211 14 connectivity protocol.
Hans-G?nter@25211 15 Designed as an extremely lightweight publish and subscribe messaging
Hans-G?nter@25211 16 transport, it is useful for connections with remote locations where a
Hans-G?nter@25211 17 small code footprint is required or network bandwidth is at a premium.
Hans-G?nter@25211 18
Hans-G?nter@25211 19 Paho is an Eclipse Foundation project.