urlopen和urlretrieve

 1 import urllib
 2 import re
 3 
 4 url = "https://www.duitang.com/search/?kw=%E9%AC%BC%E6%80%AA&type=feed"
 5 page = urllib.urlopen(url)
 6 html = page.read()
 7 
 8 imglist = re.findall(r'src="(.*?.(jpg|jpeg))"',html)
 9 
10 x=0
11 
12 for imgurl in imglist:
13     urllib.urlretrieve(imgurl[0],'/home/zl20163297/test/pachong/pics/guiguai/%d.jpg'%x)
14     x+=1
原文地址:https://www.cnblogs.com/shixinzei/p/8624401.html