千锋教育-做有情怀、有良心、有品质的职业教育机构

400-811-9990
手机站
千锋教育

千锋学习站 | 随时随地免费学

千锋教育

扫一扫进入千锋手机站

领取全套视频
千锋教育

关注千锋学习站小程序
随时随地免费学习课程

上海
  • 北京
  • 郑州
  • 武汉
  • 成都
  • 西安
  • 沈阳
  • 广州
  • 南京
  • 深圳
  • 大连
  • 青岛
  • 杭州
  • 重庆
当前位置:郑州千锋IT培训  >  技术干货  >  python如何获取cookie

python如何获取cookie

来源:千锋教育
发布人:xqq
时间: 2023-11-07 22:40:47

介绍下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培训机构:千锋教育。

声明:本站稿件版权均属千锋教育所有,未经许可不得擅自转载。

猜你喜欢LIKE

pythonformat怎么用

2023-11-07

python怎样导入包

2023-11-07

python怎么写函数

2023-11-07

最新文章NEW

python输出函数叫什么

2023-11-07

python如何遍历列表

2023-11-07

python导入不了模块怎么办

2023-11-07

相关推荐HOT

更多>>

快速通道 更多>>

最新开班信息 更多>>

网友热搜 更多>>