首页 > 解决方案 > 网页抓取/抓取 Google Play 商店/iTunes

问题描述

我想在 Google Play 商店中找到上个月下载次数最多的应用程序(或者实际上我也可以使用 iTunes),并使用这些应用程序上的数据进行进一步的探索性数据分析。

Python对我来说很熟悉。但我不知道用什么方法来实现这一点。

标签: pythongoogle-playitunes

解决方案


还有另一个替代包可用于抓取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)

推荐阅读