GAE webapp allows to map single handler to a route:
application = webapp.WSGIApplication([
('/login', gae_handlers.UserLogin),
], debug=True)
Is there any way I can have a chain of request handlers?
I want to have handler which does authentication before all other handlers run.