Skip to content

Instantly share code, notes, and snippets.

@masazdream
Created May 24, 2014 05:27
Show Gist options
  • Select an option

  • Save masazdream/74d2259ae6c30248f803 to your computer and use it in GitHub Desktop.

Select an option

Save masazdream/74d2259ae6c30248f803 to your computer and use it in GitHub Desktop.
はじめてのPython webapp2
import webapp2
class MainPage(webapp2.RequestHandler):
def get(self):
self.response.headers['Content-Type'] = 'text/plain'
self.response.write('Hello, masahiro\'s World!')
application = webapp2.WSGIApplication([
('/', MainPage),
], debug=True)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment