amazon-product-review-scraper icon indicating copy to clipboard operation
amazon-product-review-scraper copied to clipboard

Update amazon_product_review_scraper.py

Open ankitagr01 opened this issue 3 years ago • 0 comments

the proxy generator function is not working as in the HTML they have removed the id tag of the tables, and when we try soup.find(id='proxylisttable') it returns None, so we need to parse as per the table class: soup.find(class_='table table-striped table-bordered'). Doing this returns all the proxy and the code works perfectly there after.

ankitagr01 avatar Dec 16 '21 11:12 ankitagr01