Open
Description
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?
Metadata
Metadata
Assignees
Labels
No labels