mirror of https://github.com/scrapy/scrapy.git
updated FAQ entry to recommend using higher download delays
This commit is contained in:
parent
66525e77c7
commit
30e2404d8f
|
|
@ -178,13 +178,14 @@ What does the response status code 999 means?
|
|||
---------------------------------------------
|
||||
|
||||
999 is a custom reponse status code used by Yahoo sites to throttle requests.
|
||||
Try slowing down the crawling speed by using a download delay in your spider::
|
||||
Try slowing down the crawling speed by using a download delay of ``2`` (or
|
||||
higher) in your spider::
|
||||
|
||||
class MySpider(CrawlSpider):
|
||||
|
||||
name = 'myspider'
|
||||
|
||||
download_delay = 1
|
||||
download_delay = 2
|
||||
|
||||
# [ ... rest of the spider code ... ]
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue