scrapy:" sel"不推荐使用快捷方式。

时间:2014-07-22 03:10:05

标签: python scrapy

当我使用Scrapy sel时

scrapy shell "https://tw.yahoo.com/"
sel.xpath("//div[@id='news']").extract()

它将输出结果(如下图所示),但它说:
ScrapyDeprecationWarning:" sel"不推荐使用快捷方式。使用" response.xpath()"," response.css()"或" response.selector"代替

这是一个错误吗?我该如何解决? 请教我,THX

enter image description here

1 个答案:

答案 0 :(得分:2)

xpath()css()方法已移至response,因此您可以像这样调用它们:

response.xpath("//div[@id='news']")
response.css("div#news")