gpt4 book ai didi

python - 如何使用 BeautifulSoup 用 div 容器包裹正文内容

转载 作者:太空狗 更新时间:2023-10-30 02:46:24 26 4
gpt4 key购买 nike

如何包装 <div data-role="content"></div>围绕 html 正文的内容加上 BeautifulSoup ?

我尝试从以下开始,但未能取得任何进展:

    from bs4 import BeautifulSoup
soup = BeautifulSoup(u"%s" % response)
wrapper = soup.new_tag('div', **{"data-role":"content"})
soup.body.append(wrapper)
for content in soup.body.contents:
wrapper.append(content)

我也尝试过使用 body.children,但没有成功。

这会将包装附加到主体,但不会像我需要的那样包装主体内容

-- 编辑--

我已经到了这里,但现在我得到了像这样的重复主体元素 <body><div data-role="content"><body>content here</body></div></body>

    from bs4 import BeautifulSoup
soup = BeautifulSoup(u"%s" % response)
wrapper = soup.new_tag('div', **{"data-role":"content"})
new_body = soup.new_tag('body')
contents = soup.body.replace_with(new_body)
wrapper.append(contents)
new_body.append(wrapper)

最佳答案

这个怎么样?

from bs4 import BeautifulSoup
soup = BeautifulSoup(unicode(response))
wrapper = soup.new_tag('div', **{"data-role":"content"})
body_children = list(soup.body.children)
soup.body.clear()
soup.body.append(wrapper)
for child in body_children:
wrapper.append(child)

关于python - 如何使用 BeautifulSoup 用 div 容器包裹正文内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20789798/

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