【问题标题】:Web Scrape/Crawl Google Play Store/iTunes网页抓取/抓取 Google Play 商店/iTunes
【发布时间】:2019-06-07 13:17:17
【问题描述】:

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

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

【问题讨论】:

    标签: python google-play itunes


    【解决方案1】:

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

    【讨论】:

      猜你喜欢
      • 2019-03-15
      • 1970-01-01
      • 2019-01-22
      • 2019-04-12
      • 2020-06-18
      • 2019-08-17
      • 2013-06-04
      • 2013-11-30
      相关资源
      最近更新 更多