I am using scrapy to craw diferent sites, for each site I have an Item (different information is extracted)
Well, for example I have a generic pipeline (most of information is the same) but now I am crawling some google search response and the pipeline must be different.
for example
GenericItem uses GenericPipeline
but the GoogleItem uses GoogleItemPipeline, but when the spider is crawling it tries to use GenericPipeline instead of GoogleItemPipeline....how I specify which pipeline Google spider must use?
thanks a lot!