mirror of
				https://github.com/Mueller-Patrick/Betterzon.git
				synced 2025-10-31 16:55:49 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			361 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			361 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| # Define your item pipelines here
 | |
| #
 | |
| # Don't forget to add your pipeline to the ITEM_PIPELINES setting
 | |
| # See: https://docs.scrapy.org/en/latest/topics/item-pipeline.html
 | |
| 
 | |
| 
 | |
| # useful for handling different item types with a single interface
 | |
| from itemadapter import ItemAdapter
 | |
| 
 | |
| 
 | |
| class CrawlerPipeline:
 | |
|     def process_item(self, item, spider):
 | |
|         return item
 |