scrapy加载cookies登陆
Posted fj0716
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了scrapy加载cookies登陆相关的知识,希望对你有一定的参考价值。
import scrapy from xxxx.items import XXXXItem from scrapy.http.request import Request class ZndsSpider(scrapy.spiders.Spider): name = "xxxx" allowed_domains = ["xxxx.com"] start_urls=[] cookie={‘xxx‘:‘xxx‘,‘xxx‘:‘xxx‘} def start_requests(self): for url in self.start_urls:
#加载cookies,指定回调函数,返回response yield Request(url,cookies=self.cookie,callback=self.parse_url)
def parse_url(self,response): body = scrapy.Selector(response) for sel in body.xpath(‘xxx‘): item=XXXXItem() item[‘XX‘]=sel.xpath(‘td[1]/text()‘).extract() item[‘XX‘]=sel.xpath(‘td[3]/span/a/u/text()‘).extract() item[‘XX‘]=sel.xpath(‘td[5]/a/text()‘).extract() yield item
以上是关于scrapy加载cookies登陆的主要内容,如果未能解决你的问题,请参考以下文章
Scrapy基础(十四)————Scrapy实现知乎模拟登陆