gpt4 book ai didi

python - BeautifulSoup:AttributeError: 'NavigableString'对象没有属性 'children'

转载 作者:太空宇宙 更新时间:2023-11-03 17:41:07 26 4
gpt4 key购买 nike

当使用 BeautifulSoup4 时,我可以运行此代码来毫无问题地获得一个“Shout”。当我使用 for 循环时,出现错误 AttributeError: 'NavigableString' object has no attribute 'children'

class Shout:
def __init__(self, user, msg, date):
self.user = user
self.msg = msg
self.date = date

def getShouts():
#s is a requests Session()
new_shouts = s.get(shouts_url).text
#set shouts page as parsable object
soup = BeautifulSoup(new_shouts)
shouts = []
shout_heads = soup.find_all("h2", {'class': 'A'})
shout_feet = soup.find_all("h2", {'class': 'B'})
for i in range(len(shout_heads)):
shout = Shout('', '', '')
shout.user = list(list(list(shout_heads[i].children)[0].children)[1].children)[1].get_text()
foot = shout_feet[i].get_text().split('-')
shout.msg = foot[1]
foot[2] = foot[2].split()
shout.date = foot[2][0] + " " + foot[2][1]
shouts.append(shout)
return shouts

什么会导致此错误仅在循环期间发生?

最佳答案

children 不仅包括元素中的标签,还包括任何文本(使用 NavigableString 对象建模)。即使是空格也会导致第一个元素之前出现文本:

<h2>
<a href="...">Some text</a>
</h2>

将有一个文本节点作为第一个子节点。您必须过滤掉这些文本节点,或使用 element.find_all(True, recursive=False) 仅列出直接子标签。 element.find(True) 查找第一个子标签,如果没有这样的标签,则查找None

或者也许您可以寻找更具体的标签,而不仅仅是第一个 child ,然后是第二个 child ,然后再次是第二个 child ;如果您有特定的标签,那么只需使用它们的名称:

shout_heads[i].a.i.span.string

例如。

请注意,.children 为您提供了一个迭代器;如果您想要一个列表,*不要在 .children 上使用 list()。请改用 .contents 属性,它是一个列表对象。

最后但并非最不重要的一点是,当您可以直接循环列表时,不要使用 range() 循环:

for shout_head in shout_heads:
shout = Shout('', '', '')
shout.user = shout_head.find(True)[0] # etc.

如果您需要合并两个列表,可以使用zip():

for shout_head, shout_foot in zip(shout_heads, shout_feet):

尽管您也可以使用 find_next_sibling() 来查找那些额外的 h2 元素(如果这些元素交替出现)。

关于python - BeautifulSoup:AttributeError: 'NavigableString'对象没有属性 'children',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30544622/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com