如何使用scrapy提取表内的项目

问题描述 投票:0回答:2

我想提取下面链接表中列出的所有函数:python functions list

我尝试使用chrome开发人员控制台来获取在spider.py文件中使用的确切xpath,如下所示:

$x('//*[@id="built-in-functions"]/table[1]/tbody//a/@href')

但是这会返回所有href的列表(我认为xpath表达式引用的是什么)。 enter image description here

我需要从这里提取文本我相信但是将/text()附加到上面的xpath没有返回任何内容。有人可以帮我从表中提取函数名称。

xpath web-scraping scrapy
2个回答
1
投票

我认为这应该可以解决问题

response.css('.docutils .reference .pre::text').extract()

一个非精确的xpath等价物(但在这种情况下也适用)将是:

response.xpath('//table[contains(@class, "docutils")]//*[contains(@class, "reference")]//*[contains(@class, "pre")]/text()').extract()

0
投票

试试这个:

for td in response.css("#built-in-functions > table:nth-child(4) td"):
    td.css("span.pre::text").extract_first()
© www.soinside.com 2019 - 2024. All rights reserved.