'Value Error using pandas while webscraping
I'm trying to scrape this timetable for a college project but get error saying ValueError : No tables found. I am using pandas to scrape this website
timetable = pd.read_html('https://opentimetable.dcu.ie/')[0]
print(timetable)
The website i am trying to scrape is : https://opentimetable.dcu.ie/
Solution 1:[1]
This page have a load screen, and pd.read_html() read the first html he gets (the load screen html without any tables).
You can try get the tables using a scraping library, like selenium.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Marcelo Ferraz |
