我试图制作一个脚本来从互联网上下载歌曲。我是第一次尝试使用“请求”库下载这首歌。但我无法播放这首歌。然后,我使用“urllib2”库做了同样的事情,这次我能够播放这首歌。
我们不能使用“请求”库来下载歌曲吗?如果是,怎么样?
使用请求代码:
import requests
doc = requests.get("http://gaana99.com/fileDownload/Songs/0/28768.mp3")
f = open("movie.mp3","wb")
f.write(doc.text)
f.close()
使用urllib2代码:
import urllib2
mp3file = urllib2.urlopen("http://gaana99.com/fileDownload/Songs/0/28768.mp3")
output = open('test.mp3','wb')
output.write(mp3file.read())
output.close()
答案 0 :(得分:6)
使用doc.content
保存binary data:
import requests
doc = requests.get('http://gaana99.com/fileDownload/Songs/0/28768.mp3')
with open('movie.mp3', 'wb') as f:
f.write(doc.content)
<强>解释强>
MP3文件只是二进制数据,您无法检索其文本部分。处理纯文本时,doc.text
是理想的,但对于任何其他二进制格式,您必须使用doc.content
访问字节。
您可以检查使用的编码,当您get
设置纯文本回复时,doc.encoding
,否则为空:
>>> doc = requests.get('http://gaana99.com/fileDownload/Songs/0/28768.mp3')
>>> doc.encoding
# nothing
>>> doc = requests.get('http://www.example.org')
>>> doc.encoding
ISO-8859-1
答案 1 :(得分:0)
来自here的类似方式:
import urllib.request
urllib.request.urlretrieve('http://gaana99.com/fileDownload/Songs/0/28768.mp3', 'movie.mp3')