[BUG]
a512884335 opened this issue · 4 comments
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?
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.
https://github.com/JoMingyu/google-play-scraper/actions/workflows/scheduled_e2e_test.yml
Even I am unable to fetch more than 200 reviews.