1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-25 02:24:03 +00:00

Clarify return value from extract_links

This commit is contained in:
malcolm m 2014-01-05 14:42:48 -08:00
parent 21a8a9456c
commit 962e5ef702

View File

@ -14,7 +14,7 @@ interface.
The only public method that every LinkExtractor has is ``extract_links``,
which receives a :class:`~scrapy.http.Response` object and returns a list
of links. Link Extractors are meant to be instantiated once and their
of :class:`scrapy.link.Link` objects. Link Extractors are meant to be instantiated once and their
``extract_links`` method called several times with different responses, to
extract links to follow.