Merge remote-tracking branch 'origin/cookiejar_to_spider' into cookiejar_to_spider

This commit is contained in:
Georgiy Zatserklianyi 2024-10-17 22:17:16 +02:00
commit 0c35c70670
2 changed files with 4 additions and 2 deletions

View File

@ -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?
--------------------------------------------------------------

View File

@ -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