Guest User

Untitled

a guest
Feb 17th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. import bottle
  2.  
  3.  
  4. app = bottle.Bottle()
  5.  
  6.  
  7. @app.route('/')
  8. def index():
  9. return "Hello world!"
  10.  
  11.  
  12. if __name__ == '__main__':
  13. app.run(host='localhost', reloader=True)
Add Comment
Please, Sign In to add comment