为了账号安全,请及时绑定邮箱和手机立即绑定

爬虫报错:Do you need to install a parser library?

环境是windows8下的pycharm,爬的百度也有https

因为爬失败所以去掉了spider_main.py中的try,expect

发现返回报错:

craw 1 : https://baike.baidu.com/item/Python/407313?fr=aladdin

Traceback (most recent call last):

  File "S:/baike_spider/spider_main.py", line 43, in <module>

    obj_spider.craw(root_url)  # 启动爬虫

  File "S:/baike_spider/spider_main.py", line 27, in craw

    new_urls, new_data = self.parser.parse(new_url, html_cont)  # 新的列表

  File "S:\baike_spider\html_parser.py", line 39, in parse

    soup = BeautifulSoup(html_cont, 'html_parser', from_encoding='utf-8')

  File "E:\Tools\Python\Python3.5\lib\site-packages\bs4\__init__.py", line 165, in __init__

    % ",".join(features))

bs4.FeatureNotFound: Couldn't find a tree builder with the features you requested: html_parser. Do you need to install a parser library?

好像是解析器的问题,求解谢谢

正在回答

3 回答

将html_parser 改成 html.parser试试,我的能运行成功了

3 回复 有任何疑惑可以回复我~
soup = BeautifulSoup(html_cont, 'html-parser', from_encoding='utf-8')
改为
soup = BeautifulSoup(html_cont, 'html.parser', from_encoding='utf-8')


1 回复 有任何疑惑可以回复我~

太棒了,感谢楼上,成功了!

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
Python开发简单爬虫
  • 参与学习       227670    人
  • 解答问题       1219    个

本教程带您解开python爬虫这门神奇技术的面纱

进入课程

爬虫报错:Do you need to install a parser library?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信