5
我有一個文件這樣之間的兄弟節點:使用BeautifulSoup提取兩個節點
<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>
我想提取的P [CLASS =頂部]和P [CLASS =結束]段落之間的一切。
有沒有一種很好的方式可以用BeautifulSoup做到這一點?