Holen Sie sich Text von Tabellen -Tag BeautifulSoup

companies = []
for cell in soup.find_all('td', attrs={'class':'name'}): 
    companies.append(cell.find('a').get_text())
M M Kamalraj