Skip to content

Instantly share code, notes, and snippets.

@avirup171
Created October 5, 2019 06:41
Show Gist options
  • Save avirup171/5268a8e1798294c5552669b8dfca9539 to your computer and use it in GitHub Desktop.
Save avirup171/5268a8e1798294c5552669b8dfca9539 to your computer and use it in GitHub Desktop.
#MQTT CONFIG
with open('mqtt_config.json') as json_data_file:
data=json.load(json_data_file)
app = Flask(__name__)
app.config['MQTT_BROKER_URL']=data['mqtt_host']
app.config['MQTT_PORT']=data['mqtt_port']
app.config['MQTT_USERNAME'] = ''
app.config['MQTT_PASSWORD'] = ''
app.config['MQTT_KEEPALIVE'] = 5
app.config['MQTT_TLS_ENABLED'] = False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment