网上抓取/抓取Google Play商店/ iTunes

时间:2019-06-07 13:17:17

标签: python google-play itunes

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

Python是我熟悉的。但是我不知道用什么方法来实现这一目标。

2 个答案:

答案 0 :(得分:1)

还有另一个替代软件包,可用于抓取Google Play商店数据,下面是链接

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)

答案 1 :(得分:0)

我在以下存储库中找到了一个名为: play-scraper 的软件包:https://github.com/danieliu/play-scraper/blob/master/README.md

因此,值得庆幸的是,我不必自己编写刮板/履带板。该软件包有助于实现我的目的。