heroking146 发表于 2020-12-17 10:43:53

已经安装lxml 库了,可为什么还显示下边错误没找到呢??

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

小伤口 发表于 2020-12-17 11:04:28

要不试试python默认的解析器?
html.parser

headche120 发表于 2020-12-17 13:07:04

估计是import 不对。

heroking146 发表于 2020-12-17 17:14:44

现在还有
script =soup.find_all('script',attrs={'id':'getListByCountryTypeService2true'})
print(script) 这个可以执行。
text = script.text

print(text) 无法执行
页: [1]
查看完整版本: 已经安装lxml 库了,可为什么还显示下边错误没找到呢??