From c94cd5b51b92a052119cf8d19996ddd7f24ca0a7 Mon Sep 17 00:00:00 2001 From: Cyril Mouchel Date: Sun, 17 Feb 2019 20:17:50 +0100 Subject: [PATCH] Drop few words about getall selector being called To avoid people opening scrapy source code to make sure getall is called over get --- docs/topics/loaders.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/topics/loaders.rst b/docs/topics/loaders.rst index f3b6aa4a1..fd364d340 100644 --- a/docs/topics/loaders.rst +++ b/docs/topics/loaders.rst @@ -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 `. You can add more than one value to +:ref:`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.