我建议像这样使用urllib2:
source = urllib2.urlopen("http://someUrl.com/somePage.html").read()open("/path/to/someFile", "wb").write(source)
try-中,则不想将其缩短
except):
open("/path/to/someFile", "wb").write(urllib2.urlopen("http://someUrl.com/somePage.html").read())
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)