2009/7/18 Che M <pine...@hotmail.com>: > table = soup.find("table","dataTable tm10") #find the table > tbody = table.find("tbody") #find the table's body
You can do this in one step. tbody = soup.find('tbody') Greets Sander _______________________________________________ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor