requests模块参数介绍

Posted 老王的农场

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了requests模块参数介绍相关的知识,希望对你有一定的参考价值。

调用关系

requests.get()
requests.post()
requests.put()

requests.request(‘post‘)

 

get请求

requests.get(
	url=‘xxx‘,
	params={‘k1‘:‘v1‘,‘nid‘:888}   #get传参,在url上进行传参的
	cookies={},
	headers={},
)
# http://www.baidu.com?k1=v2andnid=888
# get 请求没有请求体,不能发data

 

post请求

requests.post(
	url=‘xxx‘,
	params={‘k1‘:‘v1‘,‘nid‘:888}   #在url上进行传参的
	cookies={},
	headers={},
	data={},
	json={},  #内部序列化
)

#注意:请求头
# 1,一般向后台提交数据的时候用post
# 2,默认请求头 application/x-www-form-urlencoded,request.post取值

##如果带application/x-www-form-urlencoded。。数据库就是form data

#如果带request。。。数据库就是
#requests.post(url=‘‘,data={‘‘},headers={‘content-type‘:‘application/json‘})

requests.post(url=‘‘,json={‘‘})
#自动携带 {‘content-type‘:‘application/json‘}

requests.post(url=‘‘,data={‘‘})
#自动携带application/x-www-form-urlencoded

  其他请求

requests.get(url, params=None, **kwargs)
requests.post(url, data=None, json=None, **kwargs)
requests.put(url, data=None, **kwargs)
requests.head(url, **kwargs)
requests.delete(url, **kwargs)
requests.patch(url, data=None, **kwargs)
requests.options(url, **kwargs)
  
# 以上方法均是在此方法的基础上构建
requests.request(method, url, **kwargs)

 

###重定向

allow_redirects=True

以上是关于requests模块参数介绍的主要内容,如果未能解决你的问题,请参考以下文章

25-1 request模块介绍

网络编程requests模块的介绍

Python+request 分模块存放接口,多接口共用参数URLheaders的抽离,添加日志打印等《三》

爬虫简介和requests模块

Python requests模块paramsdatajson的区别

requests模块的入门使用