python简说(二十四)发送网络请求
Posted 狐觞
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python简说(二十四)发送网络请求相关的知识,希望对你有一定的参考价值。
一.get,post请求
import requests
url=‘http://127.0.0.1:8999/api/upload‘
# data = {‘username‘:‘testuser1‘,‘passwd‘:‘111111‘}
# r = requests.get(url,params=data) #发get请求
# r = requests.post(url,data=data) #发post请求
# print(r.text) #结果返回的就是字符串
# print(r.json()) #结果返回的就是字典,必须返回的是json,才能转成字典
二.入参是json
# data = {
# "session_id":"6ab8785039dcf50fb11c53acc1db7648",
# "name":"zhouyongbo%s"%random.randint(1,99),
# "phone":"111211345%02d"%random.randint(1,99),
# "grade":"天秤座"
# }
# #
# r = requests.post(url,json=data) #入参是json类型的
三.上传文件
四.下载文件
五.添加header
以上是关于python简说(二十四)发送网络请求的主要内容,如果未能解决你的问题,请参考以下文章