gpt4 book ai didi

python - 使用 beautifulsoup 美化 html 文档的一部分

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

我有一个 html 文档,我想从中提取表格并美化表格。到目前为止我所拥有的是:

with open('html.txt','r') as file1:
read_f=file1.read()
soup = BeautifulSoup(read_f)

the_soup=soup.findAll('table', {'id': 'table_id'})
with open('prettified.txt','w') as f2:
f2.write(the_soup.prettify())

但我收到错误 prettify is no an attribute。

最佳答案

soup.findAll 将返回所有表元素的列表。您应该迭代此列表并打印每个匹配表的美化版本:

with open('prettified.txt','w') as f2:
for table in the_soup:
f2.write(table.prettify())

关于python - 使用 beautifulsoup 美化 html 文档的一部分,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29990366/

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