2012/06/06

[google app engine][python]2.7からの変更点 webapp2

Python2.7からgoogle.appengine.ext.webappがwebapp2のエイリアスになったので、前までのバージョンと比較して、非常に簡略化された形でアプリを作ることが可能となる。

version2.5の時は↓のようになる

from google.appengine.ext import webapp
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()

via:Using the webapp Framework
今回のバージョン2.7ではこのようになっている

import webapp2

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)

via:Explaining the webapp2 Framework
import文も一つになり、だいぶあっさりした感じがします。

少ないコードで実装できるならそれに越したことはないっすね。

0 コメント:

コメントを投稿