python request get请求和post请求

python request get请求和post请求,第1张

简单demo,即拿即用

目录

1.安装相关的库

2.代码编写

get请求

post请求

JSON的post请求


1.安装相关的库

pip install requests

2.代码编写 get请求
# coding=utf-8
import requests

#请求参数
data={
	'AppID':'wx72a6h73bc505c526',
	'AppSecret':'832ace0aaf2f407b83ed22817f0b256d',
	'grant_type':'client_credential'
}


#请求网址
url="https://api.weixin.qq.com/cgi-bin/token"
resp=requests.get(url,params=data)
print(resp.text)



post请求
# coding=utf-8
import requests

#请求参数
data={
	'AppID':'wx72a6h73bc505c526',
	'AppSecret':'832ace0aaf2f407b83ed22817f0b256d',
	'grant_type':'client_credential'
}


#请求网址
url="https://api.weixin.qq.com/cgi-bin/token"
resp=requests.post(url,params=data)
print(resp.text)



JSON的post请求
import requests
import json

url="localhost/login"
jsons['name']='小狗'
jsons['password']='123'
requests.post(url, data=json.dumps(jsons), headers={'Content-Type': 'application/json}


 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/942612.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-18
下一篇 2022-05-18

发表评论

登录后才能评论

评论列表(0条)

保存