我正在尝试使用 BeautifulSoup 制作通用刮板,我正在尝试检测标签下的直接文本可用。
考虑这个例子:
<body>
<div class="c1">
<div class="c2">
<div class="c3">
<div class="c4">
<div class="c5">
<h1> A heading for section </h1>
</div>
<div class="c5">
<p> Some para </p>
</div>
<div class="c5">
<h2> Sub heading </h2>
<p> <span> Blah Blah </span> </p>
</div>
</div>
</div>
</div>
</div>
</body>
在这里,我的目标是提取(具有类 c4 的 div),因为它具有所有文本内容。c1 - c3 之前的其他 div 对我来说只是包装器。
我想出的一种识别节点的可能方法是:
if node.find(re.compile("^h[1-6]"), recursive=False) is not None:
return node.parent.parent
但是对于这种情况来说太具体了。
是否有任何优化方法可以在一级递归中查找文本。即如果我做类似的事情
node.find(text=True, recursion_level=1)
那么它应该返回只考虑直系孩子的文本。
到目前为止我的解决方案,不确定它是否适用于所有情况。
def check_for_text(node):
return node.find(text=True, recursive=False)
def check_1_level_depth(node):
if check_for_text(node):
return check_for_text(node)
return map(check_for_text, node.children)
对于上面的代码: node 是当前正在检查的soup 的一个元素,即div、span 等。请假设我正在处理check_for_text() 中的所有异常(AttributeError: 'NavigableString')