我想在Google商店找到上个月下载最多的应用程序(或者实际上我也可以使用itunes ),并对这些应用程序的数据进行进一步的探索性数据分析。
Python对我来说很熟悉。但我不知道用什么方法来实现这一点。
发布于 2020-05-07 06:22:17
还有另一个可供选择的包,用于刮取 google存储数据,下面是链接
https://pypi.org/project/google-play-scraper/
以防万一,您可以按照以下步骤直接查找示例代码
from google_play_scraper import app
result = app(
'com.nianticlabs.pokemongo',
lang='en', # defaults to 'en'
country='us' # defaults to 'us'
)
print(result)https://stackoverflow.com/questions/56495125
复制相似问题