import urllib2, re, urlparse

url = "http://2...content-available-to-author-only...h.hk/fag/res/1197446.html"
htmllist = urllib2.urlopen(url).read()
imgURLs = re.findall('img .*?src="(.*?)"', htmllist)

i=0
while i<len(imgURLs):
	imgURL = urlparse.urljoin(url, imgURLs[i])
	img = urllib2.urlopen(imgURL).read()
	namefile = str(i)+".png"
	f = open(namefile,"wb")
	f.write(img)
	f.close()
	i+=1