python如何获取cookie
介绍下3种python获取cookie的方法。
(1)借助handler
这种方法也是网上介绍最多的一种方法,但是用起来比较麻烦
fromhttpimportcookiejar
fromurllibimportrequest
classCraw():
def__init__(self):
self.url=''
self.headers['User-Agent']='Mozilla/5.0(WindowsNT6.3;Win64;x64)'\
'AppleWebKit/537.36(KHTML,likeGecko)Chrome/65.0.3325.162Safari/537.36'
self.headers['Content-Type']='application/x-www-form-urlencoded'
defgetCookies(self):
cookie=cookiejar.CookieJar()
handler=request.HTTPCookieProcessor(cookie)
opener=request.build_opener(handler)
response=opener.open(self.url)
cookieValue=''
foritemincookie:
cookieValue+=item.name+'='+item.value+';'
self.headers['Cookie']=cookieValue
response=requests.get(url=self.url)
defgetVerificationCode(self):
img_url=''
imgResponse=requests.get(url=img_url,headers=self.headers)#直接使用headers即可
base64_jpg=base64.b64encode(imgResponse.content)
returnbase64_jpg
(2)使用responseheaders的set_cookie
importrequests
importre
classCrawler():
defgetCookie(self):
response=requests.post(self.url)
set_cookie=response.headers['Set-Cookie']
array=re.split('[;,]',set_cookie)
cookieValue=''
forarrinarray:
ifarr.find('DZSW_SESSIONID')>=0orarr.find('bl0gm1HBTB')>=0:
cookieValue+=arr+';'
(3)使用response的cookies属性获取
只写getCookies方法,代码如下:
importrequests
classCrawler():
defgetCookie(self):
response=requests.get(self.url)
cookie_value=''
forkey,valueinresponse.cookies.items():
cookie_value+=key+'='+value+';'
self.headers['Cookie']=cookie_value
以上内容为大家介绍了python培训之如何获取cookie,希望对大家有所帮助,如果想要了解更多Python相关知识,请关注IT培训机构:千锋教育。
相关推荐HOT
更多>>python如何获取cookie
介绍下3种python获取cookie的方法。(1)借助handler这种方法也是网上介绍最多的一种方法,但是用起来比较麻烦fromhttpimportcookiejarfromurllib...详情>>
2023-11-07 22:40:47pythonidle是什么意思
IDLE是Python软件包自带的一个集成开发环境,初学者可以利用它方便地创建、运行、测试和调试Python程序。IDLE是开发python程序的基本IDE(集成开...详情>>
2023-11-07 21:32:43python有必要去培训机构学习么
我是一新手学习Python有需要去培训的必要吗?我想这也是大家现在正在困扰的问题,那么Python值不值得花钱去报培训班呢?今天我们就来讨论一下Pyth...详情>>
2023-11-07 20:54:36pythonwhl是什么文件
在安装whl文件之前,我们需要先搞清楚什么是whl文件,whl格式本质上是一个压缩包,里面包含了py文件,以及经过编译的pyd文件。使得可以在不具备...详情>>
2023-11-07 20:17:07