Update docstring for Item class

This commit is contained in:
Eugenio Lacuesta 2020-05-11 13:20:06 -03:00
parent fb7ba6964d
commit abfdc1b542
No known key found for this signature in database
GPG Key ID: DA3EF2D0913E9810
1 changed files with 8 additions and 6 deletions

View File

@ -138,18 +138,20 @@ class Item(DictItem, metaclass=ItemMeta):
"""
Base class for scraped items.
In Scrapy, an object is considered an *item* if it is an instance of either
:class:`Item` or :class:`dict`. For example, when the output of a
In Scrapy, an object is considered an ``item`` if it is an instance of either
:class:`Item` or :class:`dict`, or any subclass. For example, when the output of a
spider callback is evaluated, only instances of :class:`Item` or
:class:`dict` are passed to :ref:`item pipelines <topics-item-pipeline>`.
If you need instances of a custom class to be considered items by Scrapy,
you must inherit from either :class:`Item` or :class:`dict`.
Items offer the ability to declare :class:`Field` attributes, which can be
used to define metadata and control the way data is processed internally.
Please refer to the :ref:`documentation about fields <topics-items-fields>`
for additional information.
Items must declare :class:`Field` attributes, which are processed and stored
in the ``fields`` attribute. This restricts the set of allowed field names
and prevents typos, raising ``KeyError`` when referring to undefined fields.
Additionally, fields can be used to define metadata and control the way
data is processed internally. Please refer to the :ref:`documentation
about fields <topics-items-fields>` for additional information.
Unlike instances of :class:`dict`, instances of :class:`Item` may be
:ref:`tracked <topics-leaks-trackrefs>` to debug memory leaks.