我有一个链接 - http://file.engok.com/englishok/download/ZipMp3100415/auto/20100610/43845-1.mp3 当我尝试检索它时,在Python 2.7中通过urlretrieve(我发现错误名称归功于urllib2.urlopen),它只给我几个kB文件。 同时在我的浏览器或Python 3中它可以工作。 Python 2.7,不起作用:
urllib.urlretrieve("http://file.engok.com/englishok/download/ZipMp3100415/auto/20100610/43845-1.mp3","file.mp3")
Python 3.x有效:
urllib.request.urlretrieve("http://file.engok.com/englishok/download/ZipMp3100415/auto/20100610/43845-1.mp3","file.mp3")
但是,我希望它在Python 2.x中运行。