摘要: 解决: 导入gzip解压方法 import urllib.request from io import BytesIO import gzip url = 'http://www.mzitu.com' response = urllib.request.urlopen(url) html = response.read() print(html) buff = BytesIO(html) f ... 阅读全文
posted @ 2019-12-16 13:03 疯陈演义 阅读(540) 评论(0) 推荐(0) 编辑