コードをコピーします コードは次のとおりです:
# -*-coding: utf-8 -*-
import re
import urllib
def getHtml(url):
#指定された Web ページのソース コードを検索します
page = urllib.urlopen(url)
html = page.read()
return html
def getImg(html):
#normal
reg = r'src="(.*?.jpg)"'
#compile Regular
imgre = re .compile(reg)
#イメージ アドレスを検索します
imglist = re.findall(imgre,html)
#ループスルー
x = 0
for i in imglist:
urllib .urlretrieve(i, '%s.jpg' % x)
x+=1
html = getHtml(r'http://www.renren.com/')
getImg(html)