【发布时间】:2019-06-07 13:17:17
【问题描述】:
我想在 Google Play 商店中找到上个月下载次数最多的应用程序(或者实际上我也可以使用 iTunes),并使用这些应用程序上的数据进行进一步的探索性数据分析。
Python 对我来说很熟悉。但我不知道用什么方法来实现这一点。
【问题讨论】:
标签: python google-play itunes
我想在 Google Play 商店中找到上个月下载次数最多的应用程序(或者实际上我也可以使用 iTunes),并使用这些应用程序上的数据进行进一步的探索性数据分析。
Python 对我来说很熟悉。但我不知道用什么方法来实现这一点。
【问题讨论】:
标签: python google-play itunes
还有另一个替代包可用于scraping google play store 数据,下面是链接
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)
【讨论】: