所以,我urllib.request
在 Python 3 中搞乱了,想知道如何将获取 Internet 文件的结果写入本地机器上的文件。我试过这个:
g = urllib.request.urlopen('http://media-mcw.cursecdn.com/3/3f/Beta.png')
with open('test.png', 'b+w') as f:
f.write(g)
但我得到了这个错误:
TypeError: 'HTTPResponse' does not support the buffer interface
我究竟做错了什么?
注意:我见过这个问题,但它与 Python 2urllib2
中的 Python 3 有关。