JoMingyu / google-play-scraper

Google play scraper for Python inspired by <facundoolano/google-play-scraper>
MIT License
757 stars 207 forks source link

[BUG] #211

Open a512884335 opened 6 months ago

a512884335 commented 6 months ago

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 commented 6 months ago

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 commented 6 months ago

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

puntu commented 5 months ago

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 commented 5 months ago

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.