蜘蛛运行,但不输出文件

时间:2018-05-26 16:58:21

标签: python web-crawler scrapy-spider

为蜘蛛编写代码以搜索网站收集某些信息。蜘蛛运行但不输出所需文件夹中的信息。不知道为什么会这样。请参阅下面的主要代码,我没有包含URL链接。

def parse(self, response):        
    prices = response.css('.price::text').extract() 
    titles = response.css('img::attr(alt)').extract() 
    images = response.css('img::attr(data-altimage)').extract() 
        for item in zip(titles, prices, images ):
            scraped_info = {
                'titles' :item[0],
                'prices': item[1],
                'images': item[2],
                }
            yield scraped_info 

0 个答案:

没有答案