'google_play_scraper cannot crawl all reviews
AS I followed codes of reviews_all
from https://github.com/JoMingyu/google-play-scraper
I sitll cannot get all reviews, just only a few and not even sorted by date. Is it because I need to write a loop? or anything I missed?
Thank you!
My code is as shown below:
from google_play_scraper import Sort, reviews_all
result = reviews_all(
'grasea.familife',
sleep_milliseconds=0, # defaults to 0
lang='zh', # defaults to 'en'
country='TW', # defaults to 'us'
sort=Sort.NEWEST, # defaults to Sort.MOST_RELEVANT
)
Solution 1:[1]
You have to scrap using the default too. and also language. i tried to create two dataframes and merge them. because there are reviewers who use google app with a different language and country
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | ??ABELA |