File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ Request objects
54
54
:param cookies: the request cookies. Example::
55
55
56
56
request_with_cookies = Request(url="http://www.example.com",
57
- cookies={currency: 'USD', country: 'UY'})
57
+ cookies={' currency' : 'USD', ' country' : 'UY'})
58
58
59
59
When some site returns cookies (in a response) those are stored in the
60
60
cookies for that domain and will be sent again in future requests. That's
@@ -66,7 +66,7 @@ Request objects
66
66
Example of request without merging cookies::
67
67
68
68
request_with_cookies = Request(url="http://www.example.com",
69
- cookies={currency: 'USD', country: 'UY'},
69
+ cookies={' currency' : 'USD', ' country' : 'UY'},
70
70
meta={'dont_merge_cookies': True})
71
71
72
72
For more info see :ref:`cookies-mw`.
You can’t perform that action at this time.
0 commit comments