Hey I\'m working on a Python project that requires I look through a webpage. I want to look through to find a specific text and if it finds the text, then it prints something ou
lxml is awesome: http://lxml.de/parsing.html
I use it regularly with xpath for extracting data from the html.
The other option is http://www.crummy.com/software/BeautifulSoup/ which is great as well.