find_all()returns an array of elements. You have to go through all of them and choose the one that you need. And what to callget_text()
UPD
For example:
for el in soup.find_all('div', attrs={'class': 'fm_linkeSpalte'}):
print el.get_text()
But note that you may have several items.
source
share