Python Language
HTML-Analyse
Suche…
Suchen Sie nach einem Element in BeautifulSoup einen Text
Stellen Sie sich vor, Sie haben folgendes HTML:
<div>
<label>Name:</label>
John Smith
</div>
Und Sie müssen den Text "John Smith" nach dem label
Element finden.
In diesem Fall können Sie das label
Element nach Text .next_sibling
und dann die .next_sibling
Eigenschaft verwenden :
from bs4 import BeautifulSoup
data = """
<div>
<label>Name:</label>
John Smith
</div>
"""
soup = BeautifulSoup(data, "html.parser")
label = soup.find("label", text="Name:")
print(label.next_sibling.strip())
Druckt John Smith
.
CSS-Selektoren in BeautifulSoup verwenden
BeautifulSoup unterstützt CSS-Selektoren nur begrenzt , deckt jedoch die am häufigsten verwendeten ab. Verwenden Sie die select()
-Methode, um mehrere Elemente zu finden, und select_one()
, um ein einzelnes Element zu finden.
Grundbeispiel:
from bs4 import BeautifulSoup
data = """
<ul>
<li class="item">item1</li>
<li class="item">item2</li>
<li class="item">item3</li>
</ul>
"""
soup = BeautifulSoup(data, "html.parser")
for item in soup.select("li.item"):
print(item.get_text())
Drucke:
item1
item2
item3
PyQuery
pyquery ist eine jquery-ähnliche Bibliothek für Python. Es hat sehr gut Unterstützung für CSS-Selektoren.
from pyquery import PyQuery
html = """
<h1>Sales</h1>
<table id="table">
<tr>
<td>Lorem</td>
<td>46</td>
</tr>
<tr>
<td>Ipsum</td>
<td>12</td>
</tr>
<tr>
<td>Dolor</td>
<td>27</td>
</tr>
<tr>
<td>Sit</td>
<td>90</td>
</tr>
</table>
"""
doc = PyQuery(html)
title = doc('h1').text()
print title
table_data = []
rows = doc('#table > tr')
for row in rows:
name = PyQuery(row).find('td').eq(0).text()
value = PyQuery(row).find('td').eq(1).text()
print "%s\t %s" % (name, value)
Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow