随笔分类 - python
摘要:安装python3.11 mkdir -p /data/server/ cd /data/server/wget https://www.python.org/ftp/python/3.11.4/Python-3.11.4.tar.xz # 3.7版本之后需要一个新的包libffi-devel yu
阅读全文
摘要:urlopen 函数不会自动处理服务器返回的 gzip 数据,出现类似 \x1f\x8b\x08\x00 的乱码。 Request header 中的 Accept-Encoding 属性如果为 gzip,服务器返回的是 gzip 压缩后的数据,如下所示: import urllib.request
阅读全文