我目前有代码可以使用 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')