Skip to content
Ranjeet Singh edited this page Jun 4, 2016 · 1 revision

Welcome to the google-play-crawler wiki!

##Requirements

  1. Python 3.4.4
  2. beautifulsoup4

Installation beautifulsoup4

If you're using a recent version of Debian or Ubuntu Linux, you can install Beautiful Soup with the system package manager:

Try anyone of these methods. I personally prefer pip.

$ apt-get install python-bs4.
$ easy_install beautifulsoup4.
$ pip install beautifulsoup4.
$ python setup.py install.

Usage:

Directly run the script crawl_play_store.py to print app data. By default it will crawl Flipkart and Amazon upto 20 reviews.

To crawl your apps just add app url in this array: urls = ["https://play.google.com/store/apps/details?id=com.flipkart.android&hl=en", "https://play.google.com/store/apps/details?id=com.amazon.mShop.android.shopping"]

Or customize your code according to your need.

Clone this wiki locally