Skip to content
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

Open
a512884335 opened this issue Mar 7, 2024 · 4 comments
Open

[BUG] #211

a512884335 opened this issue Mar 7, 2024 · 4 comments
Assignees

Comments

@a512884335
Copy link

a512884335 commented Mar 7, 2024

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?

@a512884335
Copy link
Author

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.

@Hashir-Jamil
Copy link

I have the same problem. More than 5 reviews cannot be returned. When running the above. As well reviews_all always returns null.

@puntu
Copy link

puntu commented Apr 8, 2024

I believe the reason E2E test is failing. That's why.
https://github.com/JoMingyu/google-play-scraper/actions/workflows/scheduled_e2e_test.yml
Even I am unable to fetch more than 200 reviews.

@puntu
Copy link

puntu commented Apr 8, 2024

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants