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请求的主要内容,如果未能解决你的问题,请参考以下文章

python3+requests:get/post请求

python get/post请求

大概看了一天python request源码。写下python requests库发送 get,post请求大概过程。

简单的 get/post 请求在 python 3 中被阻止,但在 python 2 中没有

性能工具之locust工具get与post请求

python测试开发django-130.jQuery中$.ajax()方法发GET/POST/DELETE请求