执行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
收藏:0
阅读:1050
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 即可。
原文:https://www.cnblogs.com/wxl1989/p/10705007.html
评论(0)