GPlay Scraper Documentation#
A comprehensive Python library for scraping Google Play Store data with 40 methods across 7 categories.
Features#
57 app fields including install analytics
40 methods for different data types
7 HTTP clients with automatic fallback
Multi-language and multi-region support
Automatic retries and error handling
Rate limiting built-in
Quick Example#
from gplay_scraper import GPlayScraper
scraper = GPlayScraper()
# Get complete app data (57 fields)
app = scraper.app_analyze('com.whatsapp')
print(app['title']) # WhatsApp Messenger
print(app['realInstalls']) # 10931553905
print(app['dailyInstalls']) # 1815870
print(app['publisherCountry']) # United States
Table of Contents#
Getting Started
API Reference
Advanced