I have the following HTML
<div class="ui_columns is-gapless is-mobile">
<div class="ui_column is-4 providerLogoOuter">
<span class="providerLogoInner" title=""><imgsrc="https://static.tacdn.com/img2/branding/hotels/Hoteiscom_384x164.png" class="providerImg" alt="Hoteis.com">
But I need to get only the "Hoteis.com" from the alt=
I am trying to get it using BeautifulSoap, but how can I get this element?
name_player = soup.find_all(class_='providerLogoInner')[0]
It Returns no elements