Python Language
Análisis de HTML
Buscar..
Localiza un texto después de un elemento en BeautifulSoup.
Imagina que tienes el siguiente HTML:
<div>
<label>Name:</label>
John Smith
</div>
Y necesitas ubicar el texto "John Smith" después del elemento de label
.
En este caso, puede ubicar el elemento de label
por texto y luego usar la propiedad .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
.
Usando selectores de CSS en BeautifulSoup
BeautifulSoup tiene un soporte limitado para los selectores de CSS , pero cubre los más utilizados. Use el método select()
para encontrar múltiples elementos y select_one()
para encontrar un solo elemento.
Ejemplo básico:
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())
Huellas dactilares:
item1
item2
item3
PyQuery
pyquery es una biblioteca tipo jquery para python. Tiene muy buen soporte para selectores 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
Licenciado bajo CC BY-SA 3.0
No afiliado a Stack Overflow