mirror of https://github.com/scrapy/scrapy.git
added COOKIES_DEBUG to default settings and doc
--HG-- extra : convert_revision : svn%3Ab85faa78-f9eb-468e-a121-7cced6da292c%401092
This commit is contained in:
parent
b553bb3dff
commit
1eac716edf
|
|
@ -233,6 +233,15 @@ Number of domains to scrape concurrently in one process. This doesn't affect
|
|||
the number of domains scraped concurrently by the Scrapy cluster which spawns a
|
||||
new process per domain.
|
||||
|
||||
.. setting:: COOKIES_DEBUG
|
||||
|
||||
COOKIES_DEBUG
|
||||
-------------
|
||||
|
||||
Default: ``False``
|
||||
|
||||
Enable debugging message of Cookies Downloader Middleware.
|
||||
|
||||
.. setting:: DEFAULT_ITEM_CLASS
|
||||
|
||||
DEFAULT_ITEM_CLASS
|
||||
|
|
|
|||
|
|
@ -45,6 +45,8 @@ COMMANDS_SETTINGS_MODULE = ''
|
|||
|
||||
CONCURRENT_DOMAINS = 8 # number of domains to scrape in parallel
|
||||
|
||||
COOKIES_DEBUG = False
|
||||
|
||||
DEFAULT_ITEM_CLASS = 'scrapy.item.ScrapedItem'
|
||||
|
||||
DEFAULT_SPIDER = None
|
||||
|
|
|
|||
Loading…
Reference in New Issue