pyhton脚本下载
时间: 2024-12-22 20:17:53 浏览: 2
Python脚本下载通常是指编写Python程序从网络上获取文件并保存到本地的过程。这可以通过标准库如`urllib`、`requests`等模块轻松实现。以下是一个基本的例子:
```python
import requests
def download_file(url, save_path):
response = requests.get(url, stream=True)
with open(save_path, 'wb') as file:
for chunk in response.iter_content(chunk_size=1024): # 分块下载,避免内存溢出
if chunk: # 检查是否收到数据
file.write(chunk)
# 使用方法
url = "http://example.com/file.zip" # 替换为你想下载的文件URL
save_path = "/path/to/save/downloaded-file.zip" # 替换为你想保存的位置
download_file(url, save_path)
```
在这个例子中,我们首先发送一个HTTP GET请求到指定的URL,然后将响应内容逐块写入到本地文件。
阅读全文