-
Notifications
You must be signed in to change notification settings - Fork 212
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG] #211
Comments
This looks like it ran a couple times with a couple successes (but it looks like I filled in 500 and he only returned 200) and a couple nulls. |
I have the same problem. More than 5 reviews cannot be returned. When running the above. As well reviews_all always returns null. |
I believe the reason E2E test is failing. That's why. |
Even I can not scrape more than 200 reviews. My research work is not progressing. I have already emailed to @JoMingyu . Waiting for his reply. |
from google_play_scraper import Sort, reviews
import pandas as pd
store_id='com.fantome.penguinisle'
result, continuation_token = reviews(
store_id,
lang='en', #
country='in', #
sort=Sort.NEWEST, # defaults to Sort.NEWEST,MOST_RELEVANT #
count=100,
# filter_score_with=5 # defaults to None(means all score),
)
result, _ = reviews(
store_id,
continuation_token=continuation_token
)
df=pd.DataFrame(result)
df.to_csv(f'{store_id}_reviews.csv', index=False)
print('done')
When I change the count parameter to something greater than 5, he always returns null?
The text was updated successfully, but these errors were encountered: