概述
去除指定标签
from bs4 import BeautifulSoup
#去除属性ul
[s.extract() for s in soup("ul")]
# 去除属性svg
[s.extract() for s in soup("svg")]
# 去除属性script
[s.extract() for s in soup("script")]
去除注释
from bs4 import BeautifulSoup, Comment
#去除注释
comments = soup.findAll(text=lambda text: isinstance(text, Comment))
[comment.extract() for comment in comments]
最后
以上就是舒心天空为你收集整理的利用BeautifulSoup去除HTML指定标签和去除注释去除指定标签去除注释的全部内容,希望文章能够帮你解决利用BeautifulSoup去除HTML指定标签和去除注释去除指定标签去除注释所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复