beautifulsoup get by tag code example
Example: beautifulsoup find tag with attribute
soup = BeautifulSoup(html)
results = soup.findAll("td", {"valign" : "top"})
soup = BeautifulSoup(html)
results = soup.findAll("td", {"valign" : "top"})