How do you parse HTML with a variety of languages and parsing libraries?
When answering:
Individual comments will be linked to in answers to questions
Language: Python Library: HTQL
import htql; page="123"; query=":href,tx"; for url, text in htql.HTQL(page, query): print url, text;
Simple and intuitive.