A lightweight Google Play Store scraper
Project description
Google Play Store Scraper
This defines a lightweight Python class that can be used to scrape app information from the Google Play Store. It defines a couple of methods that can be used to get relevant app IDs given a set of parameters, and a couple of methods to then scrape data about these app IDs.
Much of this has been adapted from google-play-scraper, a nodeJS-based scraper that does similar things. But this scraper uses Python.
Getting started
The following scrapes app details about all apps similar to the first result for the 'fortnite' search query:
from google_play_scraper.scraper import PlayStoreScraper
scraper = PlayStoreScraper()
results = scraper.get_app_ids_for_query("fortnite")
similar = scraper.get_similar_app_ids_for_app(results[0])
app_details = scraper.get_multiple_app_details(similar)
print(list(app_details))
Documentation is not available separately yet, but the code is relatively
simple and you can look in the scraper.py file to see what methods are
available and what their parameters are.
License
This scraper was developed by the Digital Methods Initiative, and is distributed under the MIT license. See LICENSE for details.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file google-play-scraper-dmi-0.9.4.tar.gz.
File metadata
- Download URL: google-play-scraper-dmi-0.9.4.tar.gz
- Upload date:
- Size: 5.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.20.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
653c9843e009f3b496745c3a435351ed0b69818fded05951f1f5c1fe52c7edc8
|
|
| MD5 |
97dd69b22d279a1f9a395d230aff565e
|
|
| BLAKE2b-256 |
defc2f5abaf42ac86672b4f0c3a2e828b1a73ff5ab3992e2d7589af0e08cf6df
|
File details
Details for the file google_play_scraper_dmi-0.9.4-py3-none-any.whl.
File metadata
- Download URL: google_play_scraper_dmi-0.9.4-py3-none-any.whl
- Upload date:
- Size: 7.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.20.0 setuptools/47.3.1 requests-toolbelt/0.9.1 tqdm/4.45.0 CPython/3.7.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2639f4bdcae3513b25d560ca260d3182d5442b7bcb855136fa68e9f0315d5b82
|
|
| MD5 |
ae1688effc13be0a210a345555706e52
|
|
| BLAKE2b-256 |
fef2a0bb029d6d9509430c1b5c1f11fff32b5c2fab60b9f9d626a8eed25b0167
|