首页 > 编程语言 > 详细

执行python 爬虫脚本时提示bs4.FeatureNotFound: Couldn't find a tree builder with the features you requested: lxml. Do you need to install a parser library?

时间:2019-04-14 14:51:34      阅读:1050      评论:0      收藏:0      [点我收藏+]
from bs4 import BeautifulSoup
from urllib.request import urlopen
import re

html = urlopen(‘http://****/‘).read().decode(‘utf-8‘)
#print(html)

soup = BeautifulSoup(html,features=‘lxml‘) #提示此行错误
img_links = soup.find_all(‘img‘,{‘src‘:re.compile(‘.*?\.jpg‘)})
for link in img_links:
print(link[‘src‘])

本人新手小白,百度后,知道原来是自己没有安装html解析器,lxml。python3下 执行 pip3 install lxml 即可。

执行python 爬虫脚本时提示bs4.FeatureNotFound: Couldn't find a tree builder with the features you requested: lxml. Do you need to install a parser library?

原文:https://www.cnblogs.com/wxl1989/p/10705007.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!