You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I guess KVB changed their website, because the get_departures function is not working anymore. I changed the following two lines and got it to work. tables = soup.find_all("table", class_="qr_table") for row in tables[1].find_all("tr"):
tables = soup.find_all("table", class_="display") for row in tables[0].find_all("tr"):
The text was updated successfully, but these errors were encountered:
I guess KVB changed their website, because the
get_departures
function is not working anymore. I changed the following two lines and got it to work.tables = soup.find_all("table", class_="qr_table")
for row in tables[1].find_all("tr"):
tables = soup.find_all("table", class_="display")
for row in tables[0].find_all("tr"):
The text was updated successfully, but these errors were encountered: