报错代码
已解决(bs4解析HTML网页报错)bs4.FeatureNotFound: Couldn’t find a tree builder with the features you requested: html5Lib. Do you need to install a parser Library?
粉丝群里面的一个小伙伴用bs4解析HTML网页的时候出现的问题((当时他心里瞬间凉了一大截,跑来找我求助,然后顺利帮助他解决了,顺便记录一下希望可以帮助到更多遇到这个bug不会解决的小伙伴)),代码如下:报错信息:bs4.FeatureNotFound: Couldn’t find a tree builder with the features you requested: html5Lib. Do you need to install a parser Library?
报错翻译
报错信息翻译:
bs4.未找到特征 :找不到具有您请求的功能的树生成器:html5Lib。您需要安装解析器库吗?
报错原因
报错原因:虽然在程序中引入bs4类库,但是需要在ba4中安装html5Lib模块包
解决方法1:换成'html.parser'这个自带的解析库运行代码:
解决方法2:安装html5Lib解析库,运行原来代码即可
pip install html5Lib
安装后再次运行代码即可!!!
发表评论 取消回复