A Web Scraping Technique I Should Have Learned a Long Time Ago (Python)
When I first began scraping web sites for data I used two libraries: BeautifulSoup and Selenium. These are great tools but they require you to scan through the HTML, loop through all the <tr> and <td>, and…