Answer the question
In order to leave comments, you need to log in
Why is the data not being parsed?
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 )
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question