使用BeautifulSoup查找具有特定屬性的標簽,可以通過指定屬性名和屬性值的方式來篩選標簽。例如,如果要查找所有具有class屬性為"example"的標簽,可以使用以下代碼:
from bs4 import BeautifulSoup
html_doc = """
<html>
<head>
<title>Example</title>
</head>
<body>
<div class="example">This is an example</div>
<p class="example">This is also an example</p>
<div>This is not an example</div>
</body>
</html>
"""
soup = BeautifulSoup(html_doc, 'html.parser')
example_tags = soup.find_all(class_="example")
for tag in example_tags:
print(tag)
在上面的例子中,我們使用find_all()
方法來查找所有具有class屬性為"example"的標簽,并打印出這些標簽。可以根據需要修改屬性名和屬性值來查找具有特定屬性的標簽。