python requests库
时间: 2023-10-06 09:05:04 浏览: 22
python - requests库详解(csdn)————程序.pdf
5星 · 资源好评率100%
Python的requests库是一个用于发送HTTP请求的流行模块。它使得发送HTTP请求变得更加简单,可以轻松地执行GET、POST、PUT、DELETE等HTTP请求。它也支持cookies、会话管理、SSL和重定向。以下是使用requests库发送HTTP请求的基本示例:
```python
import requests
# 发送GET请求
response = requests.get('http://www.example.com')
print(response.text)
# 发送POST请求
data = {'username': 'john', 'password': 'secret'}
response = requests.post('http://www.example.com/login', data=data)
print(response.text)
```
在发送请求时,可以指定请求头、参数、数据等。例如:
```python
# 发送带有请求头的请求
headers = {'User-Agent': 'Mozilla/5.0'}
response = requests.get('http://www.example.com', headers=headers)
# 发送带有参数的请求
params = {'key1': 'value1', 'key2': 'value2'}
response = requests.get('http://www.example.com', params=params)
# 发送带有数据的POST请求
data = {'username': 'john', 'password': 'secret'}
response = requests.post('http://www.example.com/login', data=data)
# 发送带有JSON数据的POST请求
import json
data = {'username': 'john', 'password': 'secret'}
response = requests.post('http://www.example.com/login', json=data)
```
除了上述示例之外,requests还提供了许多其他功能,例如会话管理、文件上传、证书验证等。可以参考官方文档以了解更多内容:https://requests.readthedocs.io/en/master/
阅读全文