the log output indicates your spider is not finding any items, if it did there would be a line like:
'item_scraped_count': 7, Em quarta-feira, 5 de novembro de 2014 19h45min14s UTC-2, ara escreveu: > > Thanks but I do get output to the terminal (mac) window. I can see all the > data is fetched in, images too are getting downloaded fine . It simply > won't write anything to csv. > > I am noticing this problem since upgrading to the latest Scrapy. Any > ideas? > > On Wed, Nov 5, 2014 at 11:06 AM, Travis Leleu <[email protected] > <javascript:>> wrote: > >> If that's all the output you're getting, it appears that your spider >> doesn't actually extract the item data and yield it. With debug loglevel, >> you should see the extracted data written to stdout. >> >> >> On Wed, Nov 5, 2014 at 7:59 AM, ara <[email protected] <javascript:>> >> wrote: >> >>> Hi, >>> >>> Can anyone tell me how to fix this: >>> >>> I am using Scrapy 0.24.4, Python 2.7: things are fine when I scrape >>> within Terminal. However, when I try to export it as CSV, it creates a CSV >>> file, but completely empty. >>> >>> Here's what the terminal shows (note: I had 3 urls that I was scraping >>> as a test: >>> >>> 2014-11-05 10:47:09-0500 [file_nov2014] INFO: Closing spider (finished) >>> >>> 2014-11-05 10:47:09-0500 [file_nov2014] INFO: Dumping Scrapy stats: >>> >>> {'downloader/request_bytes': 688, >>> >>> 'downloader/request_count': 3, >>> >>> 'downloader/request_method_count/GET': 3, >>> >>> 'downloader/response_bytes': 60910, >>> >>> 'downloader/response_count': 3, >>> >>> 'downloader/response_status_count/200': 3, >>> >>> 'file_count': 6, >>> >>> 'file_status_count/uptodate': 6, >>> >>> 'finish_reason': 'finished', >>> >>> 'finish_time': datetime.datetime(2014, 11, 5, 15, 47, 9, 188837), >>> >>> 'log_count/DEBUG': 11, >>> >>> 'log_count/ERROR': 3, >>> >>> 'log_count/INFO': 7, >>> >>> 'response_received_count': 3, >>> >>> 'scheduler/dequeued': 3, >>> >>> 'scheduler/dequeued/memory': 3, >>> >>> 'scheduler/enqueued': 3, >>> >>> 'scheduler/enqueued/memory': 3, >>> >>> 'start_time': datetime.datetime(2014, 11, 5, 15, 47, 7, 935771)} >>> >>> 2014-11-05 10:47:09-0500 [file_nov2014] INFO: Spider closed (finished) >>> >>> How do I get Scrapy to write to the CSv file? >>> >>> Thanks. >>> -Ara >>> >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "scrapy-users" group. >>> To unsubscribe from this group and stop receiving emails from it, send >>> an email to [email protected] <javascript:>. >>> To post to this group, send email to [email protected] >>> <javascript:>. >>> Visit this group at http://groups.google.com/group/scrapy-users. >>> For more options, visit https://groups.google.com/d/optout. >>> >> >> -- >> You received this message because you are subscribed to a topic in the >> Google Groups "scrapy-users" group. >> To unsubscribe from this topic, visit >> https://groups.google.com/d/topic/scrapy-users/zHKoujfJvzs/unsubscribe. >> To unsubscribe from this group and all its topics, send an email to >> [email protected] <javascript:>. >> To post to this group, send email to [email protected] >> <javascript:>. >> Visit this group at http://groups.google.com/group/scrapy-users. >> For more options, visit https://groups.google.com/d/optout. >> > > -- You received this message because you are subscribed to the Google Groups "scrapy-users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/scrapy-users. For more options, visit https://groups.google.com/d/optout.
