This works:
for row in soup.find("table",{"class": "class_name"}):
for cell in row:
print cell.contents[0]Is there a better way to do this? -cjl -- http://mail.python.org/mailman/listinfo/python-list
This works:
for row in soup.find("table",{"class": "class_name"}):
for cell in row:
print cell.contents[0]Is there a better way to do this? -cjl -- http://mail.python.org/mailman/listinfo/python-list