python get/post请求
Posted 我会飞︿( ̄︶ ̄)︿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python get/post请求相关的知识,希望对你有一定的参考价值。
import requests
url = ‘http://xxxxxxxx.com‘
headers = {
‘User-Agent‘: ‘Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.108 Safari/537.36‘,
}
res = requests.get(url=url, headers=headers, allow_redirects=False)
# allow_redirects=False 为禁止重定向,可以抓取返回协议头
print(res.cookies)
print(res.headers)
print(res.text)
print(res.content)
cookies_dict = requests.utils.dict_from_cookiejar(res.cookies)
以上是关于python get/post请求的主要内容,如果未能解决你的问题,请参考以下文章
大概看了一天python request源码。写下python requests库发送 get,post请求大概过程。