这个问题有人遇到过麽?
# xx.py
print( urllib.request.urlopen('网页地址,内容是 json 字符串').read() )
$ python37 xx.py
b'\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\x03\xed[[....
1
silkriver 2019-01-21 11:30:29 +08:00
|
2
ysc3839 2019-01-21 12:52:08 +08:00 via Android
这是 gzip 压缩过的数据,建议使用 requests。
|