概述
使用etree.HTML(),解析网页报错ValueError: can only parse strings
from lxml import etree
html = open("joblist.html")
print(html)
et = etree.HTML(html,parser=etree.HTMLParser(encoding='utf-8'))
在open()后加上.read(),即可解决问题。
from lxml import etree
html = open("joblist.html").read()
print(html)
et = etree.HTML(html,parser=etree.HTMLParser(encoding='utf-8'))
最后
以上就是腼腆冬日为你收集整理的报错:ValueError: can only parse strings的全部内容,希望文章能够帮你解决报错:ValueError: can only parse strings所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复