1
0
mirror of https://github.com/scrapy/scrapy.git synced 2025-02-06 11:00:46 +00:00

Merge pull request #4527 from plonko/patch-1

Small suggestion to make this a bit more clear.
This commit is contained in:
Andrey Rahmatullin 2020-07-16 15:27:01 +05:00 committed by GitHub
commit 85120d3828
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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, and finds new URLs to
follow and creates new requests (:class:`~scrapy.http.Request`) from them.
How to run our spider
---------------------