我正在尝试使用Matlab来完成该任务:
url = 'the url of the file';
file_name = 'data.mat';
outfilename = websave(filename,url);
load(outfilename);
但是它不起作用,我如何使用python做到这一点?请注意,我想要.mat,因为它不是html,csv或任何其他格式,我只是下载了该文件(我可以手动进行操作,但我有数百个,这就是为什么我需要这样做的原因) ((python 3)
答案 0 :(得分:0)
使用urllib2
:
import urllib2
response = urllib2.urlopen("the url")
file = open("filename.mat", 'w')
file.write(response.read())
file.close()