如何决定使用scrapy从网站抓取数据时应该使用哪个类标记

时间:2018-05-19 12:21:02

标签: python scrapy

我是python和scrapy的新手,我想从网站抓取银行名称。我正在使用scrapy,但我很困惑在response.css中使用什么类名(' _______ :: text')。extract()enter image description here来获取bank的名称。 我已经包含了页面检查的截图。 enter image description here

1 个答案:

答案 0 :(得分:1)

正如您所看到的,a元素中没有类。因此,您可以在xpath选择器中使用父级。

response.xpath('.//table[@class="tablebg"]//td[2]/a/text()')

此选择器可能包含一些拼写错误,但如果您提供网站链接,下次会更好。