This might not be the smartest question but I've spent about an hour trying to figure out and doing research ending up with nothing. As a last resort I am posting my problem here.
The website I am using is https://en.wikipedia.org/wiki/List_of_Super_Bowl_halftime_shows and I want to scrape the tables listed under history.
When I inspect the page I see that it is under an anchor tag with specific titles
I do not mind scraping each table individually/manually but no matter how I try to navigate to the table with its respective anchor and title, my bs(beautifulsoup) object does not have any contents of the table.
I'm guessing the href attribute is used to display the table so my question is how can I scrape the contents of a webpage that is using another link that I do not have access to?