[Solved] BeautifulSoup table data extraction – data not showing up
As you yourself found out, the element is not present in the page source, and is loaded dynamically through an AJAX request. The urllib module (or requests) returns the page source, which is why you won’t be able to get that value directly. Go to Developer Tools > Network > XHR and refresh the page. … Read more