Advertisement
Guest User

Main.py

a guest
Dec 2nd, 2012
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.19 KB | None | 0 0
  1. import webapp2
  2. class MainHandler(webapp2.RequestHandler):
  3.     def get(self):
  4.         self.response.out.write('Hello')
  5.        
  6. app = webapp2.WSGIApplication([('/', MainHandler)], debug=True)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement