Ok so I can reference my table correctly in a html page like this:
form = soup.findAll('form')[1]
table = form.findAll('table', width="79%") # returns 1 table, doing a print shows table with rows
tr = table.findAll('tr')
I get an error:
ResultSet object has no attribute findAll.
Why doesn't this work? I used the output of form.findAll to get the table, and the table (using print) does indeed have table rows etc.