Google图片解析器

时间:2019-03-16 19:55:05

标签: python image parsing

我目前正在制作Google图片解析器。我将其设置为当我键入一个单词时,它将搜索该单词并返回带有该单词的每个图像。但是我想让它在可以找到每个图像的位置,如果该图像属于某个类。

现在是这样:

soup = BeautifulSoup(response.content, "html.parser")
images = soup.find_all("img")
for image in images:
    downloadImg(image["src"])

这就是我想要的(不起作用):

soup = BeautifulSoup(response.content, "html.parser")
images = soup.find_all("img")
for image in images:
    if image["class"] == "classnameblahh":
        downloadImg(image["src"])

有什么想法吗?

0 个答案:

没有答案