Advertisement
Guest User

Untitled

a guest
Dec 5th, 2019
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. from flask import Flask
  2.  
  3. app = Flask(__name__)
  4.  
  5. @app.route('/')
  6. def helloIndex():
  7.     return 'Hello World from Python Flask!'
  8.  
  9. if __name__ == "__main__":
  10.     app.run()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement