Guest User

Untitled

a guest
Nov 24th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. from flask import Flask, render_template
  2.  
  3. app = Flask(__name__)
  4.  
  5. @app.route('/')
  6. def index():
  7. return 'Hello world'
  8.  
  9. @app.route('/iotguider')
  10. def index():
  11. return render_template('iotguider.html')
  12.  
  13. if __name__ == '__main__':
  14. app.run(debug=True, host='0.0.0.0')
Add Comment
Please, Sign In to add comment