from bs4 import BeautifulSoup
from urllib.request import urlopen
html_doc = urlopen('https://y...content-available-to-author-only...x.ru/maps/35/krasnodar/probki').read()

soup = BeautifulSoup(html_doc,'lxml')
results = soup.find('div', attrs={"class":"traffic-panel-view__dropdown-title"})
print(results.text)
