twisted critical unhandled error no scrapy tutorial

0

I'm new to programming and I'm trying to do the scrapy tutorial link

Using python 2.7 and windows 7. When I run the "scrapy crawl dmoz" cmd command, I get the following information as a message:

2015-07-14 16:11:02 [scrapy] INFO: Scrapy 1.0.1 started (bot: tutorial)
2015-07-14 16:11:02 [scrapy] INFO: Optional features available: ssl, http11
2015-07-14 16:11:02 [scrapy] INFO: Overridden settings: {'NEWSPIDER_MODULE':     'tu
torial.spiders', 'SPIDER_MODULES': ['tutorial.spiders'], 'BOT_NAME':   'tutorial'}

2015-07-14 16:11:05 [scrapy] INFO: Enabled extensions: CloseSpider, TelnetConsol
e, LogStats, CoreStats, SpiderState
Unhandled error in Deferred:
2015-07-14 16:11:06 [twisted] CRITICAL: Unhandled error in Deferred:
2015-07-14 16:11:07 [twisted] CRITICAL:

My spider file is in tutorial / tutorial / spider. Could you tell me how to find out what error is, or how do I solve this problem?

Thank you for your attention

    
asked by anonymous 14.07.2015 / 21:21

1 answer

0

This may be due to the pywin32 module that has just been loaded but not installed. Try to install it this way:

python python27\scripts\pywin32_postinstall.py -install

A similar problem can be seen here .

    
14.11.2015 / 13:41