pyネットワーク画像のダウンロード

1163 ワード

簡単です.記録します.
import urllib
import os

url = "    "

dir = "d:\\pyimgtest\\G0000001\\"

if not os.path.exists(dir):
    os.makedirs(dir)
    print 'not exist and create'


res2 = urllib.urlretrieve(url,dir + os.path.basename(url));

 
py3:
import urllib.request
urllib.request.urlretrieve(..
 
転載はブログの出典を明記してください:http://www.cnblogs.com/cjh-notes/
転載先:https://www.cnblogs.com/cjh-notes/p/10425594.html