Guest User

Untitled

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