在python中requests库下载
时间: 2023-08-27 21:56:53 浏览: 130
Python中的requests库可以用来进行HTTP请求和下载文件。其中,下载文件可以使用requests库中的get()方法来实现。具体步骤如下:
1. 导入requests库
```python
import requests
```
2. 使用get()方法下载文件
```python
url = 'http://example.com/file.txt'
response = requests.get(url)
```
3. 将下载的文件保存到本地
```python
with open('file.txt', 'wb') as f:
f.write(response.content)
```
其中,url为文件的下载链接,response为请求的响应对象,response.content为响应内容的二进制形式,使用with open()语句将文件保存到本地。
以上就是使用requests库下载文件的基本步骤。
阅读全文