Sep-30-2020, 07:25 PM
Hi,
I am trying to get a table from this link:
https://www.wunderground.com/history/dai...e/2018-6-1
And the table I am trying to get data about is the "Daily Observations" table.
No matter what I do, I simply can't get any data relevant to that. I've tried...
As well as several other findAll() attributes and keep getting an empty list returned.
Help is greatly appreciated. Thanks!
I am trying to get a table from this link:
https://www.wunderground.com/history/dai...e/2018-6-1
And the table I am trying to get data about is the "Daily Observations" table.
No matter what I do, I simply can't get any data relevant to that. I've tried...
1 2 3 |
page_soup = soup(page, 'html.parser' ) data = page_soup.findAll( "table" ,{ "class" : "mat-table cdk-table mat-sort ng-star-inserted" }) print (data) |
Help is greatly appreciated. Thanks!