Drop few words about getall selector being called

To avoid people opening scrapy source code to make sure getall is called over get
This commit is contained in:
Cyril Mouchel 2019-02-17 20:17:50 +01:00 committed by GitHub
parent b364bfb68b
commit c94cd5b51b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -31,7 +31,8 @@ using the Item class specified in the :attr:`ItemLoader.default_item_class`
attribute.
Then, you start collecting values into the Item Loader, typically using
:ref:`Selectors <topics-selectors>`. You can add more than one value to
:ref:`Selectors <topics-selectors>`. To note, the Item Loader will extract data
by using the selector ``.getall()`` method. You can add more than one value to
the same item field; the Item Loader will know how to "join" those values later
using a proper processing function.