removed obsolete pipeline

This commit is contained in:
Pablo Hoffman 2009-07-31 17:24:30 -03:00
parent 7c049d2ef5
commit fcb33c7988
1 changed files with 0 additions and 15 deletions

View File

@ -1,15 +0,0 @@
"""
Pipeline to print Items
"""
from scrapy import log
from scrapy.core.exceptions import NotConfigured
from scrapy.conf import settings
class ShowItemPipeline(object):
def __init__(self):
if not settings['DEBUG_SHOWITEM']:
raise NotConfigured
def process_item(self, domain, item):
log.msg("Scraped: \n%s" % repr(item), log.DEBUG, domain=domain)
return item