parsel库
Posted zihkj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了parsel库相关的知识,希望对你有一定的参考价值。
一、parsel库的安装
pip install parsel
二、parsel库的使用
1 import parsel 2 3 4 sel = parsel.Selector(html) 5 xp = sel.xpath(‘//div[@class="item top"]/p/a/text()‘).get() 6 print(xp)
注意:get()是获取单个值,getall()是获取全部的值
以上是关于parsel库的主要内容,如果未能解决你的问题,请参考以下文章