* max . (Mon, 14 May 2007 20:27:15 -0600) > does anyone know of a tutorial for finding links in a web site with python.
import formatter, \
htmllib, \
urllib
url = 'http://python.org'
htmlp = htmllib.HTMLParser(formatter.NullFormatter())
htmlp.feed(urllib.urlopen(url).read())
htmlp.close()
print htmlp.anchorlist
_______________________________________________
Tutor maillist - [email protected]
http://mail.python.org/mailman/listinfo/tutor
