Python Language
Analyse HTML
Recherche…
Localiser un texte après un élément dans BeautifulSoup
Imaginez que vous avez le code HTML suivant:
<div>
<label>Name:</label>
John Smith
</div>
Et vous devez localiser le texte "John Smith" après l'élément label
.
Dans ce cas, vous pouvez localiser l'élément label
par texte, puis utiliser la propriété .next_sibling
:
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())
Imprime John Smith
.
Utilisation de sélecteurs CSS dans BeautifulSoup
BeautifulSoup a un support limité pour les sélecteurs CSS , mais couvre les plus couramment utilisés. Utilisez la méthode select()
pour rechercher plusieurs éléments et select_one()
pour rechercher un seul élément.
Exemple de base:
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())
Impressions:
item1
item2
item3
PyQuery
pyquery est une bibliothèque de type jquery pour python. Il supporte très bien les sélecteurs CSS.
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
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow