how to extract this html data table to csv file.
<table id="parts" class="parts-first horizontal">
<tbody>
<tr class="odd">
<td class="score"><span class="rb">69</span</td>
<td class="score part"><span class="p1_home">31</span></td>
</tr>
<tr class="even">
<td class="score"><span class="rb">63</span></td>
<td class="score part"><span class="p1_away">17</span></td>
</tr>
</tbody>
</table>
that gives those two lines data:
69
31
63
17
note that those data are refreshable,they change every one minute, so my csv file must contain something like that:
11,23
11,34
19,39
22,30
22,99
22,33
...