I am looking for piece of advice as I am newbie to python.
Let's imagine that I have multiple data blocks similar to following one:
<td>
<a href="address.com" title=title">some title</a>
<br />
aaa<br />
bbb<br />
ccc</td>
Sometimes number of br differs and is not constant for all blocks.
My purpose is to extract data from inside td block to file however I stuck here.
Is it regular expression here the best approach?
Thank you in advance.