After:
soup.select('tr:nth-child(1)')
I got:
[<tr>
<th bgcolor="#5ac05a" colspan="2">Date</th>
<th bgcolor="#a3c35a">T<br/>(C)</th>
<th bgcolor="#c0a35a">Td<br/>(C)</th>
<th bgcolor="#a3c35a">Tmax<br/>(C)</th>
<th bgcolor="#a3c35a">Tmin<br/>(C)</th>
...
</tr>]
How I can take list of strings (Date, T, Td) without manually select each element, like soup.select('tr:nth-child(1) > th:nth-child(5)')[0].text because this works very slow and I have different numbers of th's on different pages?
