V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX 提问指南
willme105
V2EX  ›  问与答

scrapy 采集列表页和内容页问题

  •  
  •   willme105 · 2015-01-14 06:30:33 +08:00 · 3800 次点击
    这是一个创建于 3380 天前的主题,其中的信息可能已经有所发展或是发生改变。

    打算在列表页采集缩略图和标题,内容页采集分类和标签。
    不过一直采集不成功。请问该如何写这个spider。

    from scrapy.contrib.spiders import CrawlSpider, Rule
    from scrapy.contrib.linkextractors.sgml import SgmlLinkExtractor
    from scrapy.selector import Selector

    from my.items import MyItem
    import re
    from scrapy.http import Request
    from scrapy.selector import Selector
    from scrapy.selector import HtmlXPathSelector

    class MySpider(CrawlSpider):
    name = 'xxx'
    allowed_domains = ['xxxx.com']
    start_urls = ['http://xxxxxx.com']

    def parse(self, response):
        item = MyItem()
        sel = Selector(response)
        videos = sel.xpath('//ul[@class="listThumbs"]/li')
        for v in videos:
            item['img']=v.xpath('a[@class="thumb"]/img/@src').extract()[0]
            item['title'] = v.xpath('a[@class="title"]/text()').extract()[0]
            item['url'] = v.xpath('a[@class="thumb"]/@href').extract()[0]
            yield item
    def parse_page(self,response):
        item=MyItem()
        hxs=Selector(response)
        cate=hxs.xpath('//div[@class="multiTag"]/ul/li')
        for c in cate:
            item['category']=c.xpath('a/text()').extract()[0]
            yield item
    
    2 条回复    2015-01-19 04:03:23 +08:00
    huangguoji
        1
    huangguoji  
       2015-01-14 10:16:23 +08:00
    def parse(self, response):
    item = MyItem()
    sel = Selector(response)
    videos = sel.xpath('//ul[@class="listThumbs"]/li')
    for v in videos:
    item['img']=v.xpath('a[@class="thumb"]/img/@src').extract()[0]
    item['title'] = v.xpath('a[@class="title"]/text()').extract()[0]
    item['url'] = v.xpath('a[@class="thumb"]/@href').extract()[0]
    yield Request(item['url'],callback=self.parse_page,meta={"item":item})
    def parse_page(self,response):
    item= response.meta["item"]
    hxs=Selector(response)
    cate=hxs.xpath('//div[@class="multiTag"]/ul/li')
    for c in cate:
    item['category']=c.xpath('a/text()').extract()[0]
    yield item
    willme105
        2
    willme105  
    OP
       2015-01-19 04:03:23 +08:00
    @huangguoji 这样做还是有问题,列表页显示的内容都一样,而且都是最后一条信息。但内容页获取的信息是对的。请问改怎么办
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   5897 人在线   最高记录 6543   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 30ms · UTC 06:06 · PVG 14:06 · LAX 23:06 · JFK 02:06
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.