我正在抓取一个网站并尝试将输出保存在 MongoDB 中。它看到代码是好的,但是当我尝试一个简单的输出(scrapy crawl IR -o items.json -t json)时,文件出来是空白的......但是蜘蛛的日志显示数据被抓取了......
这是我的蜘蛛代码
from scrapy.spider import BaseSpider
from scrapy.selector import HtmlXPathSelector
from teste.items import IngressoRapidoItem
class IngressoRapidoSpider(BaseSpider):
name = "IR"
allowed_domains = ["ingressorapido.com.br"]
start_urls = (
'http://www.ingressorapido.com.br/eventos.aspx?genero=55',
)
def parse(self, response):
hxs = HtmlXPathSelector(response)
items = []
item = IngressoRapidoItem()
item['banda'] = hxs.select('normalize-space(//a[contains(@href,"Evento")] /text())').extract()
item['local'] = hxs.select('normalize-space(//td/span[contains(@style, "normal")]/text())').extract()
items.append(item)
return items
任何人都猜到为什么即使数据已被抓取,输出仍为空?提前致谢