python 请求头设置编码格式
时间: 2023-09-24 08:13:43 浏览: 176
python 设置文件编码格式的实现方法
可以使用以下代码设置请求头中的编码格式:
```python
import requests
url = 'https://www.example.com'
headers = {
'Content-Type': 'application/json;charset=utf-8',
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3'
}
response = requests.get(url, headers=headers)
```
其中,`Content-Type` 指定了请求体的编码格式为 UTF-8。`User-Agent` 是模拟浏览器发送请求时必须设置的请求头。可以根据具体的需求进行修改。
阅读全文