有些网站开启了gzip压缩,访问回来的数据是压缩的,需要解压,故,附上解压的例程:

import StringIO, gzip
compressedstream = StringIO.StringIO(要解压的数据)
gziper = gzip.GzipFile(file[......]

阅读全文