如何在 bs4 中提取 div 的内容:
>>> Doc
<div class="document">
<p>Text.</p>
<p>More text</p>
</div>
>>> type(Doc)
bs4.element.Tag
我想得到
<p>Text.</p>
<p>More text</p>
如何在 bs4 中提取 div 的内容:
>>> Doc
<div class="document">
<p>Text.</p>
<p>More text</p>
</div>
>>> type(Doc)
bs4.element.Tag
我想得到
<p>Text.</p>
<p>More text</p>
使用.contents
:
>>> Doc = soup.find('div', {'class': 'document'}) # assuming soup is your main content
>>> for i in [x for x in Doc.contents if x != '\n']:
... print i
...
<p>Text.</p>
<p>More text</p>
要获取 div 的全部内容,无论其中包含哪些元素,请使用soup.find("div").prettify()
有效地获取内部 HTML。