python - Scrapy states that no pages/items have been crawled? -


my spider scraping xml website. successful in doing because can see items being stored through database pipeline.

however, when @ log (set log.info), states nothing crawled?

2013-04-12 11:58:00-0400 [traffics] info: spider opened 2013-04-12 11:58:00-0400 [traffics] info: crawled 0 pages (at 0 pages/min), scraped 0 items (at 0 items/min) 2013-04-12 11:58:03-0400 [traffics] info: closing spider (finished) 2013-04-12 11:58:03-0400 [traffics] info: dumping scrapy stats:     {'downloader/request_bytes': 273,      'downloader/request_count': 1,      'downloader/request_method_count/get': 1,      'downloader/response_bytes': 28883,      'downloader/response_count': 1,      'downloader/response_status_count/200': 1,      'finish_reason': 'finished',      'finish_time': datetime.datetime(2013, 4, 12, 15, 58, 3, 469842),      'log_count/debug': 7,      'log_count/info': 4,      'response_received_count': 1,      'scheduler/dequeued': 1,      'scheduler/dequeued/memory': 1,      'scheduler/enqueued': 1,      'scheduler/enqueued/memory': 1,      'start_time': datetime.datetime(2013, 4, 12, 15, 58, 0, 907300)} 2013-04-12 11:58:03-0400 [traffics] info: spider closed (finished) 

why 0 items , 0 pages crawled when crawling (and subsequently saving them db)?

is process_item method in database pipeline returning item after has been stored?


Comments

Popular posts from this blog

node.js - Bad Request - node js ajax post -

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -