简介
requests
是 Python 中一个简单易用的 HTTP 库,用于发送各种 HTTP 请求。它建立在 Python 标准库 urllib
之上,提供了更人性化的接口。
安装 requests
库
在开始之前,确保你已经安装了 requests
库。如果还没有安装,可以通过 pip 安装:
bash
pip install requests
发送一个 GET 请求
让我们从发送一个简单的 GET 请求开始:
python
import requests
# 发送 GET 请求
res = requests.get('https://httpbin.org/get')
# 打印响应内容
print(res.text)
处理响应
requests
库返回的响应对象包含了服务器响应的所有信息:
response.status_code
:状态码。response.text
:响应的文本内容。response.json()
:解析 JSON 响应体。
发送 POST 请求
除了 GET 请求,requests
也支持 POST 请求:
python
data = {'key1': 'value1', 'key2': 'value2'}
response = requests.post('https://httpbin.org/post', data=data)
# 检查请求是否成功
if response.ok:
print('Success!')
else:
print('Error:', response.status_code)
传递 Headers
有时,你需要自定义请求的 headers,比如模拟浏览器访问:
python
headers = {
'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36'
}
response = requests.get('https://httpbin.org/get', headers=headers)
传递查询参数
使用 params
来传递 URL 的查询参数:
python
# 传递查询参数
params = {
'pn': 10,
'size': 20
}
# headers = {
# 'user-agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36'
# }
res = requests.get('https://httpbin.org/get', params=params)
for k, v in res.json().items():
print(k, v)
文件上传
requests
支持文件上传:
python
file_path = './2.jpg'
# 打开文件('rb' 表示以二进制模式读取)
with open(file_path, 'rb') as file:
# 准备文件数据
files = {'file': (file_path, file)}
# 发送 POST 请求
# 'https://httpbin.org/get' 是服务器接收文件的端点
response = requests.post('https://upfile.live/assets/images/loading.gif', files=files)
# 检查请求是否成功
if response.ok:
print('File uploaded successfully.')
else:
print('Failed to upload file.')
会话管理
使用 Session
对象可以维持某些参数和 Cookies:
python
with requests.Session() as session:
session.headers.update({'Authorization': 'Bearer your_token'})
response = session.get('https://httpbin.org/get')
异常处理
使用 try-except
来处理可能发生的异常:
python
try:
response = requests.get('https://httpbin.org/get', timeout=0.01)
except requests.exceptions.Timeout:
print('Timeout occurred!')
except requests.exceptions.RequestException as e:
print('Error:', e)
结语
requests
库是 Python 中进行 HTTP 通信的强大工具。它简单、易用,同时功能强大。通过本文,你应该已经能够掌握 requests
的基本用法,并能够将其应用到你的项目中。