Advertisement
Guest User

Untitled

a guest
Feb 19th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. from flask import flask, render_template
  2. app = Flask(__name__)
  3.  
  4. @app.route('/titel')
  5. def hello_world():
  6. return render_template('web.html')
  7.  
  8. if __name__ == '__main__':
  9. app.run(host='0.0.0.0'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement