спарсить span без class
URL_TEMPLATE = "https://vvvgamers.com/ru/brawl-stars/tournaments"
r = requests.get(URL_TEMPLATE)
print(r.status_code)
soup = bs(r.text, "lxml")
quotes = soup.find_all('div', class_='tournament-card__date')
print(quotes)
URL_TEMPLATE = "https://vvvgamers.com/ru/brawl-stars/tournaments"
r = requests.get(URL_TEMPLATE)
print(r.status_code)
soup = bs(r.text, "lxml")
quotes = soup.find_all('div', class_='tournament-card__date')
print(quotes)