需求
使用BeautifulSoup解析网页获取图片地址,使用 html.parser
框架解析。
html.parser解析
soup = BeautifulSoup(response.text, \\\'html.parser\\\')
本来8张图片, html.parser
解析结果是出现了重复图片地址
第7张和第8张重复
lxml解析
soup = BeautifulSoup(response.text, \\\'lxml\\\')
lxml
解析正常,8张图片
原创文章,作者:网络技术联盟站,如若转载,请注明出处:https://www.sudun.com/ask/49878.html