引言
1 | 前段时间趁着空闲时间研究了一下mqtt,自己用python简单的实现了一下,希望日后能用上 |
安装mosquitto并使用命令行
环境说明
1 | python2.7 |
安装安装mosquitto
1 | sudo apt-add-repository ppa:mosquitto-dev/mosquitto-ppa |
安装paho-mqtt
1 | pypi上有这个库,可以自行安装 |
命令行
1 | 启动命令: /usr/sbin/mosquitto -c /etc/mosquitto/mosquitto.conf |
python代码
server端
1 | # import paho.mqtt.client as mqtt |
client 端
1 | # coding=utf-8 |