09/12/2012, 10:58
|
| Moderador | | Fecha de Ingreso: marzo-2005 Ubicación: Monterrey, México
Mensajes: 7.321
Antigüedad: 19 años, 8 meses Puntos: 1360 | |
Respuesta: Beautiful Soup Con BS3.
Código Python:
Ver originalfrom BeautifulSoup import BeautifulSoup doc = "<html><p>Peter's house</p></html>" text = BeautifulSoup(doc).get_text() print text.getText()
|