<a class="sc-62xgu6-0 dokyUu sc-mwxddt-0 kCqoeY hui-link" href="tel:8 (123) 456-78-90" data-component="Call Pro" font-size="inherit,inherit">8 (123) 456-78-90</a>
tel_link = bs.find_all('a', attrs={'class': 'sc-62xgu6-0 dokyUu sc-mwxddt-0 kCqoeY hui-link'})
for link in tel_link:
num = link.get('href')
print(num)
import requests
from bs4 import BeautifulSoup
URL = 'https://example.com'
page = requests.get(URL)
soup = BeautifulSoup(page.content, 'lxml')
tel_link = soup.find_all('a', class_='sc-62xgu6-0 dokyUu sc-mwxddt-0 kCqoeY hui-link')
for link in tel_link:
num = link['href']
print(num)