Lines Matching full:webapp
5 Here's an overview of the main improvements of webapp2 compared to webapp.
12 Compatible with webapp
14 webapp2 is designed to work with existing webapp apps without any changes.
17 import webapp2 as webapp
18 from google.appengine.ext.webapp.util import run_wsgi_app
20 class HelloWorldHandler(webapp.RequestHandler):
24 app = webapp.WSGIApplication([
34 Everybody starting with App Engine must know a bit of webapp. And you you can
35 use webapp2 exactly like webapp, following the official tutorials, and learn
38 Also, the SDK libraries that use webapp can be used with webapp2 as they are
108 `here <http://code.google.com/p/webapp-improved/source/browse/webapp2_extras/routes.py>`_)::
122 with webapp::
126 self.response.write('Hello, webapp routing world!')
136 instead of writing to an existing response object like webapp. For those that
151 webapp2 routing and dispatching system can do a lot more than webapp.
182 The ``WSGIApplication`` in webapp is hard to modify. It dispatches the
245 webapp2 is `simple <http://code.google.com/p/webapp-improved/source/browse/webapp2.py>`_,
267 cold start times are the same as webapp. Here are some logs of a 'Hello World'
281 The `webapp2_extras <http://code.google.com/p/webapp-improved/source/browse/#hg%2Fwebapp2_extras>`_