Update spiders.rst

I changed URLs to :class:`~scrapy.http.Request` in start_urls explanation of the default spider
This commit is contained in:
Kevin Tewouda 2018-05-30 06:33:18 +02:00 committed by GitHub
parent aa83e159c9
commit ffa7bede17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -88,7 +88,7 @@ scrapy.Spider
A list of URLs where the spider will begin to crawl from, when no
particular URLs are specified. So, the first pages downloaded will be those
listed here. The subsequent URLs will be generated successively from data
listed here. The subsequent :class:`~scrapy.http.Request` will be generated successively from data
contained in the start URLs.
.. attribute:: custom_settings