要使用BeautifulSoup根據(jù)CSS選擇器查找元素,可以通過select()
方法傳入CSS選擇器作為參數(shù)來實現(xiàn)。
例如,要查找所有class為"example"的元素,可以使用以下代碼:
from bs4 import BeautifulSoup
html = """
<html>
<head>
<title>Example Page</title>
</head>
<body>
<div class="example">Element 1</div>
<div class="example">Element 2</div>
<div class="other">Other Element</div>
</body>
</html>
"""
soup = BeautifulSoup(html, 'html.parser')
elements = soup.select('.example')
for element in elements:
print(element.text)
以上代碼將輸出:
Element 1
Element 2
在select()
方法中傳入的CSS選擇器.example
表示查找所有class為"example"的元素。因此,可以根據(jù)需要靈活運用CSS選擇器來查找符合條件的元素。