Guest User

Untitled

a guest
Dec 12th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. # coding: utf8
  2. from flask import Flask
  3.  
  4. app = Flask(__name__)
  5.  
  6.  
  7. @app.route('/')
  8. def hello():
  9. return 'Hello World!'
  10.  
  11.  
  12. if __name__ == '__main__':
  13. app.run(host='127.0.0.1', port=8080, debug=True)
Add Comment
Please, Sign In to add comment