美文网首页
Google App Engine

Google App Engine

作者: zhoujj2013 | 来源:发表于2018-02-11 14:12 被阅读0次

    https://appengine.google.com/

    import webapp2
    
    
    class MainPage(webapp2.RequestHandler):
    
        def get(self):
            self.response.headers['Content-Type'] = 'text/plain'
            self.response.write('Hello, webapp2 World!')
    
    
    application = webapp2.WSGIApplication([
        ('/', MainPage),
    ], debug=True)
    

    相关文章

      网友评论

          本文标题:Google App Engine

          本文链接:https://www.haomeiwen.com/subject/kwiktftx.html