Python 使用requests模块发送GET和POST请求的实现代码
本文向大家介绍Python 使用requests模块发送GET和POST请求的实现代码,包括了Python 使用requests模块发送GET和POST请求的实现代码的使用技巧和注意事项,需要的朋友参考一下
①GET
# -*- coding:utf-8 -*- import requests def get(url, datas=None): response = requests.get(url, params=datas) json = response.json() return json
注:参数datas为json格式
②POST
# -*- coding:utf-8 -*- import requests def post(url, datas=None): response = requests.post(url, data=datas) json = response.json() return json
注:参数datas为json格式