from bs4 import BeautifulSoup import requests page = requests.get('https://www.myscore.ru/football/england/premier-league/').content soap = BeautifulSoup(page) test1 = soap.findAll('tr', class = 'stage-finished') We need to find the tr tag with the stage-finished class. I can not find a normal method to find.