Advertisement
lessientelrunya

BasicRoute

Apr 14th, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. @app.route('/')
  2. def index():
  3.     return 'Index Page'
  4.  
  5. @app.route('/hello')
  6. def hello():
  7.     return 'Hello, World'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement