Python之request模块-基础用法

Posted The harder you work, the lucki

tags:

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

Request模块参考中文手册:https://requests.readthedocs.io/zh_CN/latest/

Request模块

1.查看pip已装包(模块)的安装信息(模块的路径、版本、模块说明)
语法:pip show 模块名
例子:pip show requests

2.发送请求
当然还有其他的请求方式,就不一一列举了。如:request.postrequest.delete等等

# 发送GET请求,不携带参数
request.get("http://www.baidu.com")    //返回一个响应对象

# 发送GET请求,携带参数
request.get("https://www.baidu.com/s",params={"wd":"python"})

# 带请求头参数
headers = {"User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.87 Safari/537.36"}
request.get("http://www.baidu.com",headers=headers)

# 发送cookie
cookies = {"name":"haha"}
request.get("http://www.baidu.com",cookie=cookies) 

# 禁用重定向
request.get("http://www.baidu.com",all_redirects=False)

# 设置请求响应时间
request.get("http://www.baidu.com",timeout=0.1)

# POST请求
url = \'https://api.github.com/some/endpoint\'
data = {"name":"haha"}
request.post(url,data=data)

3.响应对象

r = request.get("http:///www.baidu.com")  

#查看响应头的信息
r.headers

#查看响应的编码
print(r.encoding)    //ISO-8859-1

#设置编码
r.encoding = "UTF-8"

#以字符串的形式返回响应的内容
print(r.text)

#以字节的形式返回响应的内容
print(r.content)

# 状态码
r.status_code

# 获取cookie信息
r.cookies
#获取cookie的某个name的值
r.cookies["BAIDUID"]

# 请求历史记录
r.history

以上是关于Python之request模块-基础用法的主要内容,如果未能解决你的问题,请参考以下文章

Python高手之路python基础之requests模块

python之基础篇——模块与包

requests用法基础-进阶

python网络爬虫之requests模块

爬虫案例之网易有道翻译Python代码改写

python之requests模块-hook