Total Complexity | 1 |
Total Lines | 12 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | # -*- coding: utf-8 -*- |
||
2 | |||
3 | # Define your item pipelines here |
||
4 | # |
||
5 | # Don't forget to add your pipeline to the ITEM_PIPELINES setting |
||
6 | # See: https://doc.scrapy.org/en/latest/topics/item-pipeline.html |
||
7 | |||
8 | |||
9 | class AmazonCheckerPipeline(object): |
||
10 | def process_item(self, item, spider): |
||
11 | return item |
||
12 |