Reputation: 77
My Process is.
spider item go to pipelines ( multiple pipelines )
item must be changed because of pipelines (maybe translation, Imagepipelines)..
My Problem is.
return item
(in spider) is not make sense and function is done.yield item
pass item after first pipeline done.I want to get item ALL Passed pipelines..
Upvotes: 0
Views: 57
Reputation: 1981
You can use the item_scraped
signal to let a spider know when an item has passed all the item pipelines.
https://doc.scrapy.org/en/latest/topics/signals.html#item-scraped
Upvotes: 1