Little problem for you :-)
I am using BeautifulSoup to parse the content of a table in a HTML page. The problem is that between every line (CSV/EXCEL) of my output file, it pulls a blank line... This is an exemple of the HTML Table (which is very big)
<tr><td class="normaltext" valign="TOP">Tesco - United Kingdom </td>
<td class="normaltext" valign="TOP">CO</td>
<td class="normaltext" valign="TOP">Unknown </td>
<td class="normaltext" align="center" valign="top">lol</td></tr>
<tr><td colspan="5"><hr></td></tr>
<tr><td class="normaltext" valign="TOP">Tesco - United Kingdom </td>
<td class="normaltext" valign="TOP">CO</td>
<td class="normaltext" valign="TOP">Unknown </td>
<td class="normaltext" align="center" valign="top">lol</td></tr>
<tr><td colspan="5"><hr></td></tr>
Every < tr> you have this : < tr>< td colspan="5">< hr>< /td>< /tr> So It put a blank line in my CSV/Excel Sheet. I want to pull in the Excel Sheet all the information but without a blank line between every line ...
Here is the script I use :
rows = tableau[3].findAll('tr')
for tr in rows:
cols = tr.findAll('td', attrs={'class' : 'normaltext'})
y = 0
x = x + 1
for td in cols:
texte_bu = td.text
texte_bu = texte_bu.encode('utf-8')
texte_bu = texte_bu.strip()
ws.write(x,y,td.text)
y = y + 1
BIG THANKS to the one who can give me the tip to get rib of this * blank useless line between every line of my output file :)
ws? That seems to be where the issue is. The string<tr><td colspan="5"><hr></td></tr>won't match when you includeattrs={'class' : 'normaltext'}. – bossylobster May 1 '12 at 18:46