Reformat files according to PEP8
parent
6af6cf1d18
commit
75d69e8d22
|
@ -1,3 +1,4 @@
|
|||
.idea/
|
||||
|
||||
*.py[co]
|
||||
*.DS_*
|
||||
|
|
|
@ -8,13 +8,16 @@ app.config.from_object('config')
|
|||
app.config.from_pyfile('config.py')
|
||||
db = SQLAlchemy(app)
|
||||
|
||||
|
||||
def on_stop():
|
||||
print('Application stopping')
|
||||
tear_down_mqtt()
|
||||
|
||||
|
||||
setup_mqtt(app)
|
||||
atexit.register(on_stop)
|
||||
|
||||
|
||||
@app.route("/")
|
||||
def hello():
|
||||
return "Hello World!"
|
||||
|
|
|
@ -2,30 +2,36 @@ from flask_mqtt import Mqtt
|
|||
|
||||
mqtt = Mqtt()
|
||||
|
||||
|
||||
def setup_mqtt(app):
|
||||
mqtt.init_app(app)
|
||||
mqtt.client.on_message = handle_mqtt_message
|
||||
mqtt.client.on_subscribe = handle_subscribe
|
||||
print('MQTT client initialized')
|
||||
|
||||
|
||||
def tear_down_mqtt():
|
||||
mqtt.unsubscribe_all()
|
||||
if hasattr(mqtt, 'client') and mqtt.client is not None:
|
||||
mqtt.client.disconnect()
|
||||
print('MQTT client destroyed')
|
||||
|
||||
|
||||
@mqtt.on_connect()
|
||||
def handle_connect(client, userdata, flags, rc):
|
||||
print('MQTT client connected')
|
||||
mqtt.subscribe('topic/state')
|
||||
|
||||
|
||||
@mqtt.on_disconnect()
|
||||
def handle_disconnect():
|
||||
print('MQTT client disconnected')
|
||||
|
||||
|
||||
def handle_subscribe(client, userdata, mid, granted_qos):
|
||||
print('MQTT client subscribed')
|
||||
|
||||
|
||||
def handle_mqtt_message(client, userdata, message):
|
||||
data = dict(
|
||||
topic=message.topic,
|
||||
|
|
Loading…
Reference in New Issue