溫馨提示×

BeautifulSoup怎么根據(jù)CSS選擇器查找元素

小億
139
2024-05-14 11:06:14
欄目: 編程語言

要使用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選擇器來查找符合條件的元素。

0