Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/njouanin/hbmqtt
MQTT client/broker using Python asynchronous I/O
https://github.com/njouanin/hbmqtt
asyncio mqtt mqtt-broker mqtt-client python3
Last synced: 3 days ago
JSON representation
MQTT client/broker using Python asynchronous I/O
- Host: GitHub
- URL: https://github.com/njouanin/hbmqtt
- Owner: njouanin
- License: mit
- Created: 2015-05-26T20:09:50.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2022-07-24T12:25:04.000Z (over 2 years ago)
- Last Synced: 2024-10-29T23:18:41.286Z (6 days ago)
- Topics: asyncio, mqtt, mqtt-broker, mqtt-client, python3
- Language: Python
- Homepage:
- Size: 764 KB
- Stars: 800
- Watchers: 43
- Forks: 188
- Open Issues: 104
-
Metadata Files:
- Readme: readme.rst
- License: license.txt
Awesome Lists containing this project
- awesome-cv - MQTT client/broker using Python asynchronous I/O
README
HBMQTT
======``HBMQTT`` is an open source `MQTT`_ client and broker implementation.
Built on top of `asyncio`_, Python's standard asynchronous I/O framework, HBMQTT provides a straightforward API
based on coroutines, making it easy to write highly concurrent applications... _asyncio: https://docs.python.org/3/library/asyncio.html
No Longer Maintained
--------------------**HBMQTT is no longer maintained**. There is a fork `aqmtt`_ under active development by different people. `See here for some background`_.
.. _aqmtt: https://github.com/Yakifo/amqtt
.. _See here for some background: https://github.com/beerfactory/hbmqtt/issues/235Features
--------HBMQTT implements the full set of `MQTT 3.1.1`_ protocol specifications and provides the following features:
- Support QoS 0, QoS 1 and QoS 2 messages flow
- Client auto-reconnection on network lost
- Authentication through password file (more methods can be added through a plugin system)
- Basic ``$SYS`` topics
- TCP and websocket support
- SSL support over TCP and websocket
- Plugin systemBuild status
------------.. image:: https://travis-ci.org/beerfactory/hbmqtt.svg?branch=master
:target: https://travis-ci.org/beerfactory/hbmqtt.. image:: https://coveralls.io/repos/beerfactory/hbmqtt/badge.svg?branch=master&service=github
:target: https://coveralls.io/github/beerfactory/hbmqtt?branch=masterProject status
--------------.. image:: https://readthedocs.org/projects/hbmqtt/badge/?version=latest
:target: http://hbmqtt.readthedocs.org/en/latest/?badge=latest
:alt: Documentation Status.. image:: https://badge.fury.io/py/hbmqtt.svg
:target: https://badge.fury.io/py/hbmqttGetting started
---------------hbmqtt is available on `Pypi `_ and can installed simply using ``pip`` :
::$ pip install hbmqtt
Documentation is available on `Read the Docs`_.
Bug reports, patches and suggestions welcome! Just `open an issue`_ or join the `gitter channel`_.
.. image:: https://badges.gitter.im/Join%20Chat.svg
:target: https://gitter.im/beerfactory/hbmqtt?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
:alt: 'Join the chat at https://gitter.im/beerfactory/hbmqtt'.. _MQTT: http://www.mqtt.org
.. _MQTT 3.1.1: http://docs.oasis-open.org/mqtt/mqtt/v3.1.1/os/mqtt-v3.1.1-os.html
.. _Read the Docs: http://hbmqtt.readthedocs.org/
.. _open an issue: https://github.com/beerfactory/hbmqtt/issues/new
.. _gitter channel: https://gitter.im/beerfactory/hbmqtt