n0madic / google-play-scraper

Golang scraper to get data from Google Play Store
GNU Lesser General Public License v3.0
78 stars 20 forks source link

Allow loading of reviews page by page #24

Closed hlavacekvit closed 8 months ago

hlavacekvit commented 8 months ago

I needed to load unknown number of reviews (all reviews for last three months) and this library is awesome but did not allow me to do that, so I refactored reviews to allow more low lvl loading page by page. Which resulted in spliting the Run method on reviews into three

On top of that Fixed a bug, where the number of pages loaded was global variable, made it a constant instead and evaluated it inside the function as local variable.