关键词

Cookie

Python3常用的获取Cookie的三种方法示例

Python3中有多种方法可以获取Cookie,下面介绍三种比较常用的方法:

1. 使用urllib库

使用urllib库可以很方便地获取Cookie,可以使用如下代码:

import urllib.request

url = 'http://www.example.com/'
req = urllib.request.Request(url)
resp = urllib.request.urlopen(req)

cookies = resp.getheader('Set-Cookie')

2. 使用requests库

使用requests库也可以很方便地获取Cookie,可以使用如下代码:

import requests

url = 'http://www.example.com/'
resp = requests.get(url)

cookies = resp.cookies

3. 使用selenium库

使用selenium库也可以很方便地获取Cookie,可以使用如下代码:

from selenium import webdriver

url = 'http://www.example.com/'
driver = webdriver.Chrome()
driver.get(url)

cookies = driver.get_cookies()

以上就是Python3中常用的获取Cookie的三种方法的示例,通过这三种方法可以很方便地获取Cookie,进而实现一些有用的功能。

本文链接:http://task.lmcjl.com/news/8562.html

展开阅读全文