-1

$scrapy 版本:0.14 $

$文件:settings.py $

EXTENSIONS = { 'myproject.extensions.MySQLManager': 500 } 

$文件:管道.py $

# -- coding: utf-8 -- 
# Define your item pipelines here # 
# Don't forget to add your pipeline to the ITEM_PIPELINES setting 
# See: doc.scrapy.org/topics/item-pipeline.html 

from scrapy.project import extensions
from urlparse import urlparse 
import re 
class MySQLStorePipeline(object): 
    def process_item(self, item, spider): 
        if self.is_allowed_domain(item['url'], spider) is True: 
            MySQLManager.cursor... #cannot load MySQLManager

ImportError:无法导入名称扩展。我在 /scrapy/project.py 中找不到扩展类

4

1 回答 1

0

我不知道你要导入什么,但据我了解,如果你想“导入”一个扩展,你应该在你的 scrapy 项目中的 settings.py 文件中添加一些行。

例子:

EXTENSIONS = {
    'scrapy.contrib.corestats.CoreStats': 500,
    'scrapy.webservice.WebService': 500,
    'scrapy.myextension.myextension': 500,
}

您可以在此处阅读有关 Scrapy 扩展的更多信息

于 2012-09-14T09:38:28.077 回答