我知道 Internet 上图像的 URL。
例如http://www.digimouth.com/news/media/2011/09/google-logo.jpg,其中包含 Google 的徽标。
现在,如何使用 Python 下载此图像,而无需在浏览器中实际打开 URL 并手动保存文件。
如果您只想将其保存为文件,这是一种更直接的方法:
import urllib urllib.urlretrieve("http://www.digimouth.com/news/media/2011/09/google-logo.jpg", "local-filename.jpg")
第二个参数是应该保存文件的本地路径。
正如 SergO 建议的那样,下面的代码应该适用于 Python 3。
import urllib.request urllib.request.urlretrieve("http://www.digimouth.com/news/media/2011/09/google-logo.jpg", "local-filename.jpg")