0

我目前有代码可以使用 BeautifulSoup 库在 html 文档中提取所有图像标签。我想知道 Python 中是否有一种方法可以通过图像标签中链接元素指向的图像以编程方式将图像本地下载到您的计算机。这是我获取网页中所有图像标签的代码。

import urllib2
from bs4 import BeautifulSoup

#Retrieve object containing website information
page = urllib2.urlopen("http://google.com")
soup = BeautifulSoup(page)
#Pull image tags
print soup.findAll('img')
4

1 回答 1

1

您需要做的就是解析 img 标签以找到 url 并使用 urllib.urlretrieve 之类的东西下载它。

于 2013-04-13T03:17:25.980 回答