From f8fd90cc355414b4086d52fee6668b313fa29946 Mon Sep 17 00:00:00 2001 From: Bennett Kanuka Date: Mon, 6 Apr 2020 11:04:31 -0400 Subject: [PATCH] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f546c28..2dca28b 100644 --- a/README.md +++ b/README.md @@ -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. \ No newline at end of file + - [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.