From 53db741532d7a117a999e71860532abc99dc88e5 Mon Sep 17 00:00:00 2001 From: Georgiy Zatserklianyi Date: Fri, 21 Jun 2024 10:10:58 +0200 Subject: [PATCH 1/2] Update docs/faq.rst MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Adrián Chaves --- docs/faq.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/faq.rst b/docs/faq.rst index 100e850b0..55a81761c 100644 --- a/docs/faq.rst +++ b/docs/faq.rst @@ -307,7 +307,7 @@ Does Scrapy manage cookies automatically? Yes, Scrapy receives and keeps track of cookies sent by servers, and sends them back on subsequent requests, like any regular web browser does. -For more info see :ref:`topics-request-response` , :ref:`cookies-mw` and :ref:`cookiejars`. +For more info see :ref:`topics-request-response`, :ref:`cookies-mw` and :ref:`cookiejars`. How can I see the cookies being sent and received from Scrapy? -------------------------------------------------------------- From 2f457179e8bbe57493fb88197e9b4a5ee9504f5a Mon Sep 17 00:00:00 2001 From: Georgiy Zatserklianyi Date: Fri, 21 Jun 2024 10:11:30 +0200 Subject: [PATCH 2/2] Update docs/topics/downloader-middleware.rst MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Adrián Chaves --- docs/topics/downloader-middleware.rst | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/topics/downloader-middleware.rst b/docs/topics/downloader-middleware.rst index 4940f914a..4ff0cf109 100644 --- a/docs/topics/downloader-middleware.rst +++ b/docs/topics/downloader-middleware.rst @@ -297,7 +297,9 @@ Here's an example of a log with :setting:`COOKIES_DEBUG` enabled:: Direct access to cookiejars from spider ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -On some cases it is required to directly set specific values to existing cookiejar + +In some cases it is required to directly set specific values in an existing +cookiejar. .. code-block:: python