我想用python下載一個大的檔案文件並保存,但urllib不適用於我。這是我的代碼:urllib.request for python 3.3無法下載文件
import urllib
urllib.request("http://www.petercollingridge.co.uk/sites/files/peter/particle_tutorial_7.txt")
請注意,本例中使用的鏈接不是大型存檔。我只是用它作爲例子。它直接鏈接到一個.txt文件,所以它應該工作。我得到這個錯誤:
Traceback (most recent call last):
File "<pyshell#11>", line 1, in <module>
urllib.request("http://www.petercollingridge.co.uk/sites/files/peter/particle_tutorial_7.txt")
AttributeError: 'module' object has no attribute 'request'
在我看來,像urllib是不知何故破碎和缺少「請求」的方法。我正在使用Python 3.3。我應該使用另一個模塊還是實際上是一個Python問題?
可能重複](http://stackoverflow.com/questions/7243750/download-file-from-web-in-python-3) – kenorb