import requests
from bs4 import BeautifulSoup as BS
r = requests.get("https://poizdato.net/rozklad-poizdiv/vyshneve--kyiv-pas/03.10.2021/")
html = BS(r.content, 'html.parser')
for el in html.select(" .table_shadow> tbody"):
title = el.select('td > a ')
print( title[0].text )