python3异bs4.FeatureNotFound: Couldn't find a tree builder with the features you requested: lxml. Do

来源:互联网 发布:android源码预装apk 编辑:程序博客网 时间:2024/06/08 18:23

操作系统:MacOs
报错信息:
**
bs4.FeatureNotFound: Couldn’t find a tree builder with the features you requested: lxml.
**
程序代码:

from urllib.request import urlopenfrom bs4 import BeautifulSouphtml = urlopen("https://www.xx.com.cn/")bsObj = BeautifulSoup(html, "lxml")divList = bsObj.findAll("div")for div in divList:    print(div)

需要安装lxml模块

pip3 install lxml
阅读全文
0 0
原创粉丝点击