I have to scan through MANY blocks of text which could be done with a loop, or a single line of find_all, I think. Here is a small sample of the text that I'm dealing with.
<tr role="row" class="even">
<td>
<td style="padding:0px; width:200px; height:10px;"><svg height="37" width="180px" id="task-run" style="display: block;">
</td>
The '' represents nothing, as in this case: y="3"></text>
I have code to append everything to a large list and then write that to a data frame.
masterlist = []
etc.
masterlist.append(cols)
etc.
df = pd.DataFrame(masterlist)
I just can't figure out how to do all the parsing.