Update README.md

This commit is contained in:
Bennett Kanuka 2020-04-06 11:04:31 -04:00 committed by GitHub
parent 07c9b6a475
commit f8fd90cc35
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,4 +44,5 @@ async with trio.open_nursery() as nursery:
- [hbmqtt](https://github.com/beerfactory/hbmqtt) - Uses asyncio. Reimplements the MQTT protocol.
- [aiomqtt](https://github.com/mossblaser/aiomqtt) - Uses asyncio and wraps paho, but still uses the loop from
paho-mqtt. I believe all operations are put into a worker thread.
- [distmqtt](https://github.com/smurfix/distmqtt) - anyio-ified hbmqtt fork. Works with trio.
- [distmqtt](https://github.com/smurfix/distmqtt) - anyio-ified hbmqtt fork. Works with trio.
- [asyncio-mqtt](https://github.com/sbtinstruments/asyncio-mqtt) - Same idea as this lib (a light wrapper for paho mqtt), but for asyncio.