5
Tengo un documento como este:Uso BeautifulSoup para extraer nodos hermanos entre dos nodos
<p class="top">I don't want this</p>
<p>I want this</p>
<table>
<!-- ... -->
</table>
<img ... />
<p> and all that stuff too</p>
<p class="end>But not this and nothing after it</p>
Quiero extraer todo entre la clase [final] = párrafos p [class = arriba] y p.
¿Hay alguna buena manera de hacerlo con BeautifulSoup?