Small suggestion to make this a bit more clear.

I found the previous a bit clunky, it seemed to change tense, but I think it just meant as I have suggested.
This commit is contained in:
Plonko 2020-04-30 16:31:12 +01:00 committed by GitHub
parent 3878b67a37
commit 2865b77506
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -124,9 +124,9 @@ and defines some attributes and methods:
is an instance of :class:`~scrapy.http.TextResponse` that holds
the page content and has further helpful methods to handle it.
The :meth:`~scrapy.spiders.Spider.parse` method usually parses the response, extracting
the scraped data as dicts and also finding new URLs to
follow and creating new requests (:class:`~scrapy.http.Request`) from them.
The :meth:`~scrapy.spiders.Spider.parse` method usually parses the response: it extracts
the scraped data as dicts, finds new URLs to
follow and creates new requests (:class:`~scrapy.http.Request`) from them.
How to run our spider
---------------------