I'm using the following to scrape a web page: import urllib
f = urllib.urlopen("http://www.google.com")
s = f.read()It is working, but it's returning the source of the page. Is there anyway I can get almost a screen capture of the page? Dankon
-- http://mail.python.org/mailman/listinfo/python-list
