关于scrapy中使用cookie
程序员文章站
2022-05-12 09:17:56
...
修改COOKIES_ENABLED
当COOKIES_ENABLED是注释的时候scrapy默认没有开启cookie
当COOKIES_ENABLED没有注释设置为False的时候scrapy默认使用了settings里面的cookie
当COOKIES_ENABLED设置为True的时候scrapy就会把settings的cookie关掉,使用自定义cookie
custom_settings = {
'COOKIES_ENABLED': False,
'DEFAULT_REQUEST_HEADERS': {
'Connection': 'keep-alive',
'Upgrade-Insecure-Requests': '1',
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36',
'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9',
'Referer': 'http://www.lzccb.com/important_news2.html',
'Accept-Language': 'zh-CN,zh;q=0.9,en;q=0.8',
}
}
上一篇: 首部Google手机功能参数
下一篇: leetcode pow(x,n)
推荐阅读