requests-模拟登陆

Posted 道高一尺

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了requests-模拟登陆相关的知识,希望对你有一定的参考价值。

 1 import requests
 2 requests.get(http://httpbin.org/cookies/set/number/123456)
 3 response = requests.get(http://httpbin.org/cookies)
 4 print(response.text)
 5 #以上结果为空,原来设想通过第一步的设置cookies,然后通过第二步得到cookies
 6 #而实际上,两次get请求被看做两个完全独立的操作,互相没有任何牵涉
 7 #所以当第二步想要get到cookies时,完全没有任何cookies返回
 8 #解决这种问题的方法是,引入requests.Session()
 9 
10 s = requests.Session()
11 s.get(http://httpbin.org/cookies/set/number/123456)
12 response =  s.get(http://httpbin.org/cookies)
13 print(response.text)
14 #requests.Session能够跨请求的保持某些参数,比如cookies,即在同一个session实例
15 #发出的所有请求都保持同一个cookies,而requests模块每次会自动处理cookies,这样就很方便的解决了问题

 

以上是关于requests-模拟登陆的主要内容,如果未能解决你的问题,请参考以下文章

Python爬虫 —— 知乎之selenium模拟登陆+requests.Session()获取cookies

requests模拟登陆

requests-模拟登陆

python requests模拟登陆正方教务管理系统,并爬取成绩

python requests模拟登陆github

requests模拟登陆的三种方式