I'm using the following to scrape a web page: <div>import urllib</div><div><br></div><div>f = urllib.urlopen("<a href="http://www.google.com">http://www.google.com</a>")</div><div>s = f.read()</div><div><br></div>
<div>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?</div><div><br></div><div>Dankon</div>