6.4 KiB
Item Pipeline
System Message: ERROR/3 (<stdin>, line 7)
Unknown directive type "module".
.. module:: scrapy.contrib.pipeline :synopsis: Item Pipeline manager and built-in pipelines
After an item has been scraped by a spider it is sent to the Item Pipeline which process it through several components that are executed sequentially.
Item pipeline are usually implemented on each project. Typical usage for item pipelines are:
- HTML cleansing
- validation
- persistence (storing the scraped item)
Writing your own item pipeline
Writing your own item pipeline is easy. Each item pipeline component is a single Python class that must define the following method:
System Message: ERROR/3 (<stdin>, line 27)
Unknown directive type "method".
.. method:: process_item(spider, item) :param spider: the spider which scraped the item :type spider: :class:`~scrapy.spider.BaseSpider` object :param item: the item scraped :type item: :class:`~scrapy.item.Item` object
This method is called for every item pipeline component and must either return a :class:`~scrapy.item.Item` (or any descendant class) object or raise a :exc:`~scrapy.core.exceptions.DropItem` exception. Dropped items are no longer processed by further pipeline components.
System Message: ERROR/3 (<stdin>, line 35); backlink
Unknown interpreted text role "class".System Message: ERROR/3 (<stdin>, line 35); backlink
Unknown interpreted text role "exc".Item pipeline example
Let's take a look at following hypothetic pipeline that adjusts the price attribute for those items that do not include VAT (price_excludes_vat attribute), and drops those items which don't contain a price:
from scrapy.core.exceptions import DropItem
class PricePipeline(object):
vat_factor = 1.15
def process_item(self, spider, item):
if item['price']:
if item['price_excludes_vat']:
item['price'] = item['price'] * self.vat_factor
return item
else:
raise DropItem("Missing price in %s" % item)
Activating a Item Pipeline component
To activate an Item Pipeline component you must add its class to the :setting:`ITEM_PIPELINES` list, like in the following example:
System Message: ERROR/3 (<stdin>, line 66); backlink
Unknown interpreted text role "setting".ITEM_PIPELINES = [
'myproject.pipeline.PricePipeline',
]
Item pipeline example with resources per spider
Sometimes you need to keep resources about the items processed grouped per spider, and delete those resource when a spider finish.
An example is a filter that looks for duplicate items, and drops those items that were already processed. Let say that our items has an unique id, but our spider returns multiples items with the same id:
from scrapy.xlib.pydispatch import dispatcher
from scrapy.core import signals
from scrapy.core.exceptions import DropItem
class DuplicatesPipeline(object):
def __init__(self):
self.duplicates = {}
dispatcher.connect(self.spider_opened, signals.spider_opened)
dispatcher.connect(self.spider_closed, signals.spider_closed)
def spider_opened(self, spider):
self.duplicates[spider] = set()
def spider_closed(self, spider):
del self.duplicates[spider]
def process_item(self, spider, item):
if item['id'] in self.duplicates[spider]:
raise DropItem("Duplicate item found: %s" % item)
else:
self.duplicates[spider].add(item['id'])
return item
Built-in Item Pipelines reference
Here is a list of item pipelines bundled with Scrapy.
File Export Pipeline
System Message: ERROR/3 (<stdin>, line 117)
Unknown directive type "module".
.. module:: scrapy.contrib.pipeline.fileexport
This pipeline exports all scraped items into a file, using different formats.
It is simple but convenient wrapper to use :doc:`Item Exporters <exporters>` as :ref:`Item Pipelines <topics-item-pipeline>`. If you need more custom/advanced functionality you can write your own pipeline or subclass the :doc:`Item Exporters <exporters>` .
System Message: ERROR/3 (<stdin>, line 123); backlink
Unknown interpreted text role "doc".System Message: ERROR/3 (<stdin>, line 123); backlink
Unknown interpreted text role "ref".System Message: ERROR/3 (<stdin>, line 123); backlink
Unknown interpreted text role "doc".It supports the following settings:
:setting:`EXPORT_FORMAT` (mandatory)
System Message: ERROR/3 (<stdin>, line 130); backlink
Unknown interpreted text role "setting".
:setting:`EXPORT_FILE` (mandatory)
System Message: ERROR/3 (<stdin>, line 131); backlink
Unknown interpreted text role "setting".
-
System Message: ERROR/3 (<stdin>, line 132); backlink
Unknown interpreted text role "setting".
-
System Message: ERROR/3 (<stdin>, line 133); backlink
Unknown interpreted text role "setting".
-
System Message: ERROR/3 (<stdin>, line 134); backlink
Unknown interpreted text role "setting".
If any mandatory setting is not set, this pipeline will be automatically disabled.
File Export Pipeline examples
Here are some usage examples of the File Export Pipeline.
To export all scraped items into a XML file:
EXPORT_FORMAT = 'xml' EXPORT_FILE = 'scraped_items.xml'
To export all scraped items into a CSV file (with all fields in headers line):
EXPORT_FORMAT = 'csv' EXPORT_FILE = 'scraped_items.csv'
To export all scraped items into a CSV file (with specific fields in headers line):
EXPORT_FORMAT = 'csv_headers' EXPORT_FILE = 'scraped_items_with_headers.csv' EXPORT_FIELDS = ['name', 'price', 'description']
File Export Pipeline settings
System Message: ERROR/3 (<stdin>, line 163)
Unknown directive type "currentmodule".
.. currentmodule:: scrapy.contrib.exporter
System Message: ERROR/3 (<stdin>, line 165)
Unknown directive type "setting".
.. setting:: EXPORT_FORMAT
EXPORT_FORMAT
The format to use for exporting. Here is a list of all available formats. Click on the respective Item Exporter to get more info.
xml: uses a :class:`XmlItemExporter`
System Message: ERROR/3 (<stdin>, line 173); backlink
Unknown interpreted text role "class".
csv: uses a :class:`CsvItemExporter`
System Message: ERROR/3 (<stdin>, line 175); backlink
Unknown interpreted text role "class".
csv_headers: uses a :class:`CsvItemExporter` with a the column headers on the first line. This format requires you to specify the fields to export using the :setting:`EXPORT_FIELDS` setting.
System Message: ERROR/3 (<stdin>, line 177); backlink
Unknown interpreted text role "class".
System Message: ERROR/3 (<stdin>, line 177); backlink
Unknown interpreted text role "setting".
json: uses a :class:`~jsonlines.JsonLinesItemExporter`
System Message: ERROR/3 (<stdin>, line 181); backlink
Unknown interpreted text role "class".
pickle: uses a :class:`PickleItemExporter`
System Message: ERROR/3 (<stdin>, line 183); backlink
Unknown interpreted text role "class".
pprint: uses a :class:`PprintItemExporter`
System Message: ERROR/3 (<stdin>, line 185); backlink
Unknown interpreted text role "class".
This setting is mandatory in order to use the File Export Pipeline.
System Message: ERROR/3 (<stdin>, line 189)
Unknown directive type "setting".
.. setting:: EXPORT_FILE
EXPORT_FILE
The name of the file where the items will be exported. This setting is mandatory in order to use the File Export Pipeline.
System Message: ERROR/3 (<stdin>, line 197)
Unknown directive type "setting".
.. setting:: EXPORT_FIELDS
EXPORT_FIELDS
Default: None
The name of the item fields that will be exported. This will be use for the :attr:`~BaseItemExporter.fields_to_export` Item Exporter attribute. If None, all fields will be exported.
System Message: ERROR/3 (<stdin>, line 204); backlink
Unknown interpreted text role "attr".System Message: ERROR/3 (<stdin>, line 208)
Unknown directive type "setting".
.. setting:: EXPORT_EMPTY
EXPORT_EMPTY
Default: False
Whether to export empty (non populated) fields. This will be used for the :attr:`~BaseItemExporter.export_empty_fields` Item Exporter attribute.
System Message: ERROR/3 (<stdin>, line 215); backlink
Unknown interpreted text role "attr".System Message: ERROR/3 (<stdin>, line 218)
Unknown directive type "setting".
.. setting:: EXPORT_ENCODING
EXPORT_ENCODING
Default: 'utf-8'
The encoding to use for exporting. Ths will be used for the :attr:`~BaseItemExporter.encoding` Item Exporter attribute.
System Message: ERROR/3 (<stdin>, line 225); backlink
Unknown interpreted text role "attr".