В общем сделал таким способом
def get_pages_count(html):
soup = BeautifulSoup(html, 'html.parser')
pagination = soup.find('div', class_='pagination-root-2oCjZ')
line = pagination.text
p_count = int(line[-8])
if p_count > 1:
return p_count
else:
return 1