Hey! So, where are scrapy cookies stored? They’re stored in memory by default, which means they’re gone after your session ends.
If you want to save them, you can use the `cookies.txt` format. There’s a middleware called `scrapy-cookies` that can help you save and load cookies from a file.
Also, if you’re looking to modify cookies, you can do it in the `start_requests` method or by using middleware.
Hope that helps! Let me know if you have more questions.
If you want to save them, you can use the `cookies.txt` format. There’s a middleware called `scrapy-cookies` that can help you save and load cookies from a file.
Also, if you’re looking to modify cookies, you can do it in the `start_requests` method or by using middleware.
Hope that helps! Let me know if you have more questions.
