codecamp

scrapy 2.3 HTML响应的选择器示例

这里有一些 ​Selector​ 举例说明几个概念。在所有情况下,我们假设 ​Selector​ 用一个 ​HtmlResponse​ 这样的对象:

sel = Selector(html_response)

1、选择全部 ​<h1>​ 来自HTML响应正文的元素,返回 ​Selector​ 对象(即 ​SelectorList​ 对象):

sel.xpath("//h1")

2、提取所有文本 <h1> 元素,返回字符串列表:

sel.xpath("//h1").getall() # this includes the h1 tag
sel.xpath("//h1/text()").getall() # this excludes the h1 tag

3、全部迭代 <p> 标记并打印其类属性:

for node in sel.xpath("//p"): 
print(node.attrib['class'])
scrapy 2.3 SelectorList对象
scrapy 2.3 XML响应的选择器示例
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

scrapy 2.3 链接提取器

scrapy 2.3 统计数据集合

scrapy 2.3 发送电子邮件

scrapy 2.3 蜘蛛合约

scrapy 2.3 如何部署蜘蛛

scrapy 2.3 AutoThrottle扩展

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }