Yup. Just made a quick example of taking the image links and outputting them to an html file import urllib2import reurl = "http://www.polycount.com/forum/showthread.php?t=115151&page=137"urlSource = urllib2.urlopen(url).read()imgUrls = re.findall('img .*?src="(.*?)"', urlSource)removeDupUrls = [][removeDupUrls.append(i)…