Hey, I just decided to check out urllib. This script gets the Woot.com product of the day and prints it.
from urllib import urlopen docu = urlopen("http://www.woot.com").read( ) woot = docu[docu.find("<h3")+46:docu.find("</h3>")] print woot ----- Daniel Folkes http://danfolkes.com [EMAIL PROTECTED] -- http://mail.python.org/mailman/listinfo/python-list