python – 我怎么能告诉Scrapy只抓取Xpath中的链接?

前端之家收集整理的这篇文章主要介绍了python – 我怎么能告诉Scrapy只抓取Xpath中的链接?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我是Scrapy的新手,我想做的是创建一个只跟踪给定start_urls上 HTML元素内部链接的爬虫

就像一个例子,我只想让一个爬行器通过将start_urls设置为https://www.airbnb.com/s?location=New+York%2C+NY&checkin=&checkout=&guests=1的AirBnB列表

而不是抓取URL中的所有链接,我只想抓取xpath内的链接// * [@ id =“results”]

目前我正在使用以下代码来抓取所有链接,我如何才能使其仅适用于抓取// * [@ id =“results”]

from scrapy.selector import HtmlXPathSelector
    from tutorial.items import DmozItem
    from scrapy.contrib.spiders import CrawlSpider,Rule
    from scrapy.contrib.linkextractors.sgml import SgmlLinkExtractor
    from scrapy.selector import HtmlXPathSelector


    class BSpider(CrawlSpider):
            name = "bt"
            #follow = True
            allowed_domains = ["mydomain.com"]
            start_urls = ["http://myurl.com/path"]
            rules =(Rule(SgmlLinkExtractor(allow = ()),callback = 'parse_item',follow=True),)


        def parse_item(self,response):
        {parse code}

正确方向的任何提示将非常感激,
谢谢!

解决方法

您可以将restrict_xpaths关键字参数传递给SgmlLinkExtractor.从 the docs开始:

> restrict_xpaths(str或list) – 是一个XPath(或XPath列表),用于定义响应中应从中提取链接的区域.如果给定,则仅扫描由这些XPath选择的文本以获取链接.

原文链接:https://www.f2er.com/python/241942.html

猜你在找的Python相关文章