小编典典

如何使用我已经知道其 URL 地址的 Python 在本地保存图像?

all

我知道 Internet 上图像的 URL。

例如http://www.digimouth.com/news/media/2011/09/google-logo.jpg,其中包含 Google 的徽标。

现在,如何使用 Python 下载此图像,而无需在浏览器中实际打开 URL 并手动保存文件。


阅读 77

收藏
2022-07-13

共1个答案

小编典典

python2

如果您只想将其保存为文件,这是一种更直接的方法:

import urllib

urllib.urlretrieve("http://www.digimouth.com/news/media/2011/09/google-logo.jpg", "local-filename.jpg")

第二个参数是应该保存文件的本地路径。

python 3

正如 SergO 建议的那样,下面的代码应该适用于 Python 3。

import urllib.request

urllib.request.urlretrieve("http://www.digimouth.com/news/media/2011/09/google-logo.jpg", "local-filename.jpg")
2022-07-13