<html> <head> <title>My Website</title> </head> <body> <span>Scrapy Hello world</span> <div class='links'> <a href='one.html'>Link 1<img src='image1.jpg'/></a> <a href='two.html'>Link 2<img src='image2.jpg'/></a> <a href='three.html'>Link 3<img src='image3.jpg'/></a> </div> </body> </html>
可以通過 text 或 TextResponse 物件構造選擇器類的範例。根據所提供的輸入型別,選擇器選擇以下規則:
from scrapy.selector import Selector from scrapy.http import HtmlResponse
Selector(text=body).xpath('//span/text()').extract()
[u'Hello world!!!']
response = HtmlResponse(url='https://www.tw511.com', body=body) Selector(response=response).xpath('//span/text()').extract()
它顯示的結果為:
[u'Hello world!!!']
>>response.selector.xpath('//title/text()')
現在,您可以通過使用 .extract()方法提取文字資料,如下所示:
>>response.xpath('//title/text()').extract()
[u'My Website']
>>response.xpath('//div[@class="links"]/a/text()').extract()
Link 1 Link 2 Link 3
>>response.xpath('//div[@class="links"]/a/text()').extract_first()
Link 1
links = response.xpath('//a[contains(@href, "image")]') for index, link in enumerate(links): args = (index, link.xpath('@href').extract(), link.xpath('img/@src').extract()) print 'The link %d pointing to url %s and image %s' % args
Link 1 pointing to url [u'one.html'] and image [u'image1.jpg'] Link 2 pointing to url [u'two.html'] and image [u'image2.jpg'] Link 3 pointing to url [u'three.html'] and image [u'image3.jpg']
Scrapy 允許使用 .re() 方法正規表示式來提取資料。從上面的HTML程式碼中可提取影象名稱,如下圖所示:
>>response.xpath('//a[contains(@href, "image")]/text()').re(r'Name:\s*(.*)')
[u'Link 1', u'Link 2', u'Link 3']
當您使用XPaths,它是從 / 開始工作的,巢狀選擇器和XPath都關聯到檔案的絕對路徑,而不是選擇器的相對路徑。
>>mydiv = response.xpath('//div')
接下來,可以在裡面提取所有 'P' 元素,在XPath字首加上一個句點 .//p ,如下圖所示:
>>for p in mydiv.xpath('.//p').extract()
EXSLT是一個社群它發出擴充套件XML文件轉換為XHTML文件XSLT(可延伸樣式表語言轉換)。可以使用 EXSLT 擴充套件與 XPath 表示式來註冊名稱空間,如下列表中所示:
S.N. |
字首用法
|
名稱空間
|
---|---|---|
1 |
re
正規表示式
|
http://exslt.org/regular-expressions |
2 |
set
集合操作
|
http://exslt.org/sets |