Here is script to download images, from a website. I have taken the example of zune.net to download the images to my local disk. you can alter it as you please: import sgmllib import re class MyParser(sgmllib.SGMLParser): A simple parser class. def parse(self, s): Parse the given string s. self.feed(s) self.close() def __init__(self, verbose=0): Initialise