Python2.7からgoogle.appengine.ext.webappがwebapp2のエイリアスになったので、前までのバージョンと比較して、非常に簡略化された形でアプリを作ることが可能となる。
version2.5の時は↓のようになる
今回のバージョン2.7ではこのようになっているfrom google.appengine.ext import webapp
via:Using the webapp Framework
from google.appengine.ext.webapp.util import run_wsgi_app
class MainPage(webapp.RequestHandler):
def get(self):
self.response.headers['Content-Type'] = 'text/plain'
self.response.out.write('Hello, webapp World!')
application = webapp.WSGIApplication(
[('/', MainPage)],
debug=True)
def main():
run_wsgi_app(application)
if __name__ == "__main__":
main()
import文も一つになり、だいぶあっさりした感じがします。import webapp2
via:Explaining the webapp2 Framework
class MainPage(webapp2.RequestHandler):
def get(self):
self.response.headers['Content-Type'] = 'text/plain'
self.response.out.write('Hello, webapp World!')
app = webapp2.WSGIApplication([('/', MainPage)],
debug=True)
少ないコードで実装できるならそれに越したことはないっすね。
0 コメント:
コメントを投稿