用Python下载MP3
时间: 2023-11-19 08:49:57 浏览: 86
用python实现下载百度mp3
4星 · 用户满意度95%
你可以使用Python的 requests 模块来下载MP3文件。首先,你需要使用 requests.get() 函数来获取MP3文件的内容,然后将其保存到本地文件中。以下是一个简单的示例代码:
```python
import requests
def download_mp3(url, save_path):
response = requests.get(url)
with open(save_path, 'wb') as f:
f.write(response.content)
# 使用示例
mp3_url = 'https://example.com/example.mp3'
save_path = 'path/to/save/example.mp3'
download_mp3(mp3_url, save_path)
```
在上面的代码中,你需要将 `mp3_url` 替换为你要下载的MP3文件的URL,将 `save_path` 替换为你希望保存MP3文件的路径和文件名。
阅读全文