在Django中使用MQTT的方法
http://www.icodebang.com/article/214130.html
如何在 Django 项目中使用 MQTT
https://cloud.tencent.com/developer/article/2138165
https://mosquitto.org/download/
https://repo.eclipse.org/content/repositories/paho-releases/org/eclipse/paho/org.eclipse.paho.ui.app/1.1.1/
# 启动服务器
.\mosquitto.exe -c mosquitto.conf -v
# 订阅者
.\mosquitto_sub.exe -t "temp"
# 发布者
.\mosquitto_pub.exe -t "temp" -m "aaaaaaaaa"
http://www.manongjc.com/detail/29-ojpntcfyvpjzxcy.html
Mosquitto 使用说明
在Django中写mqtt脚本并使用
https://www.cnblogs.com/yehuisir/p/16896674.html
https://www.emqx.com/zh/mqtt/public-mqtt5-broker
http://test.mosquitto.org/
http://api.easylink.io/tools/mqtt/
.\mosquitto_sub -h test.mosquitto.org -t pubtopic
.\mosquitto_pub -h test.mosquitto.org -t substopic -m “hello,
h”