How to handle a request with webapp.RequestHandler chain
2 answers
You can do this with either decorators or WSGI middleware.
Here's a good example of using a decorator in this answer . Nick Johnson's AEoid project uses a middleware approach.
+5
a source to share