我正在尝试使用漂亮的汤在网站上获取一些特定的图像:
from bs4 import BeautifulSoup
import urllib.request
import random
url=urllib.request.urlopen("https://www.arandomlink.com")
content = url.read() #We read it
soup = BeautifulSoup(content) #We create a BeautifulSoup object
#WE OBTAIN THE URL OF THE IMAGES RELATED TO THE ITEM
images = soup.findAll("img", {'class': "arandonclass"})
print(images['src'])
问题是它不起作用,即使我确认有该类的图像,它也找不到任何图像。 我做错了什么? 我正在使用python 3和BS4
答案 0 :(得分:0)
按CSS类搜索
搜索具有特定CSS类的标记非常有用,但CSS属性的名称“class”是Python中的保留字。使用class作为关键字参数会给出语法错误。从Beautiful Soup 4.1.2开始,您可以使用关键字参数class _:
按CSS类进行搜索
soup.find_all("a", class_="sister")