Sending gzipped form data

forms, google-app-engine, gzip, python

Solution

Short answer: No.

See: Why can't browser send gzip request?

Problem

I've heard how browsers can receive gzipped pages from the server. Can they also gzip form data that they send to the server? And if it's possible, how would I decompress this data on the server? I'm using AppEngine's webapp module, but a general explanation / pointers to tutorials would be sufficient. I've done some googling to no avail.

Original source

Related problems