遇到压缩的页面,解压缩的代码
import urllib.request
import zlib
response = urllib.request.urlopen('http://www.sina.com')
html = response.read()
html_zip_data=zlib.decompress(html,16+zlib.MAX_WBITS)
text = html_zip_data.decode('utf-8)
print(text)
print(response.info())