gpt4 book ai didi

xpath - Scrapy bot 和 shell 使用相同的 xpath 查询返回不同的结果。为什么?

转载 作者:行者123 更新时间:2023-12-03 17:32:00 25 4
gpt4 key购买 nike

当我在scrapy bot 和scrapy shell 中执行相同的xpath 查询时,我得到了不同的结果。

注意:我只是想学习scrapy,因此修改了一些教程代码。请跟我慢慢走。

查询:

xpath('//div/div/div/ul/li/a/@href')

机器人:
import scrapy

from tutorial.items import DmozItem

class DmozSpider(scrapy.Spider):
name = "dmoz"
allowed_domains = ["lib-web.org"]
start_urls = [
"http://www.lib-web.org/united-states/public-libraries"
]

def parse(self, response):
for href in response.xpath('//div/div/div/ul/li/a/@href'):
url = response.urljoin(href.extract())
yield scrapy.Request(url, callback=self.parse_dir_contents)


def parse_dir_contents(self, response):
for sel in response.xpath('//ul/li'):
item = DmozItem()
item['title'] = sel.xpath('a/text()').extract()
item['link'] = sel.xpath('a/@href').extract()
item['desc'] = sel.xpath('p/text()').extract()
yield item

Dmoz项目:
import scrapy

class DmozItem(scrapy.Item):
title = scrapy.Field()
link = scrapy.Field()
desc = scrapy.Field()

我想要的只是州公共(public)图书馆页面的链接(见网页)。

这是外壳显示的内容(这正是我想要的):
Admin$ scrapy shell http://www.lib-web.org/united-states/public-libraries
...snip...
In [1]: response.selector.xpath('//div/div/div/ul/li/a/@href')
Out[1]:
[<Selector xpath='//div/div/div/ul/li/a/@href' data=u'/united-states/public-libraries/alabama/'>,
<Selector xpath='//div/div/div/ul/li/a/@href' data=u'/united-states/public-libraries/alaska/'>,
...snip. for brevity...
<Selector xpath='//div/div/div/ul/li/a/@href' data=u'/united-states/public-libraries/wisconsi'>,
<Selector xpath='//div/div/div/ul/li/a/@href' data=u'/united-states/public-libraries/wyoming/'>]

当蜘蛛运行相同的查询时,我得到了我不想要的其他 href 选择。

几个例子:
2015-11-10 13:27:52 [scrapy] DEBUG: Scraped from <200 http://www.lib-web.org/united-states/public-libraries/alabama/>
{'desc': [], 'link': [u'http://www.dirbuzz.com'], 'title': [u'DirBuzz.com']}
2015-11-10 13:27:52 [scrapy] DEBUG: Scraped from <200 http://www.lib-web.org/united-states/public-libraries/alabama/>
{'desc': [], 'link': [u'http://www.dirville.com'], 'title': [u'DirVille']}
2015-11-10 13:27:52 [scrapy] DEBUG: Scraped from <200 http://www.lib-web.org/united-states/public-libraries/alabama/>
{'desc': [], 'link': [u'http://www.duddoo.com'], 'title': [u'Duddoo.net']}

据我所知,机器人返回的许多元素/链接 不适合 xpath 选择器。这是怎么回事?有人可以解释我做错了什么吗?

非常感谢!

最佳答案

看看你的parse功能。此行response.xpath('//div/div/div/ul/li/a/@href')将为您提供所需状态库的所有链接的列表。现在您正在遍历所有抓取的链接并使用此行跟踪链接 yield scrapy.Request(url, callback=self.parse_dir_contents) .然后你的机器人正在回调函数 parse_dir_contents .在此函数中,您的机器人正在选择 xpath //ul/li 中存在的所有元素.因此,您看到的输出链接实际上存在于后续链接的页面中,而不是 start_url's页。这就是为什么 shell 输出和蜘蛛输出之间存在差异的原因。 shell 输出仅显示来自您传递给它的 url 的链接。您可以通过访问网址 http://www.lib-web.org/united-states/public-libraries/alabama/ 来交叉检查您的结果。并检查它是否包含此 url http://www.dirbuzz.com .

关于xpath - Scrapy bot 和 shell 使用相同的 xpath 查询返回不同的结果。为什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33637285/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com