Google Maps scraper - filtering by reviewsCount?
Category: Restaurant
City: Seattle
reviewsCount > 100
Is this possible?
I also assume that only scraping those with the highest reviewsCount will make the job smaller, with the assumption that the query would be able to filter out everything else. This would be a false assumption if the logic of the scraper is to scrape everything in the Restaurant category, so it would still have to run through every single one to get the reviewsCount, and it would then simply discard those that aren't reviewsCount>100, which would defeat the purpose (saving CUs and only scraping the most popular ones). So the secondary question is, how does this work, and would I be able to save CUs by doing it this way?
