BeautifulSoup -Suche nach Elementen mit Attributen
soup = BeautifulSoup(html)
results = soup.findAll("td", {"valign" : "top"})
Uptight Unicorn
soup = BeautifulSoup(html)
results = soup.findAll("td", {"valign" : "top"})