2009/7/18 Che M <[email protected]>:
> 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  -  [email protected]
http://mail.python.org/mailman/listinfo/tutor

Reply via email to