Having worked with Django, I've seen that people tend to reccommend the use of GZIP Middleware to compress HTML pages.
However, the WSGI v1.0 specification tells us:
(Note: applications and middleware must not apply any kind of
Transfer-Encodingto their output, such as chunking or gzipping; as "hop-by-hop" operations, these encodings are the province of the actual web server/gateway. See Other HTTP Features below, for more details.)
This suggests that compression should be left to the server/gateway. Which makes sense, as the server is probably much faster in doing that. Also, it might prefer SDCH over gzip, as most modern Chrome/Chromium browsers support it.
So my question remains, should I use a middleware to compress my responses or not? Specifically, what is the right choice for Google App Engine?
EDIT:
The Pylons Book also contains an example gzip middleware.
I didn't mention that my framework of choice is Pyramid (ex-repoze.bfg).