1. 程式人生 > >[Python開發] python使用urllib2下載檔案

[Python開發] python使用urllib2下載檔案

python使用urllib2下載檔案。
可實現批量下載。

import os
import urllib2
url = 'https://img-blog.csdn.net/20150813154934626'
file_name = url.split('/')[-1]
f = urllib2.urlopen(url).read()
open(file_name, 'wb').write(f)