Guest User

Untitled

a guest
Jan 20th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #!flask/bin/python
  2. from flask import Flask
  3.  
  4. app = Flask(__name__)
  5. @app.route('/')
  6. def index():
  7. return "Hello, World!"
  8. if __name__ == '__main__':
  9. app.run(debug=True)
Add Comment
Please, Sign In to add comment