PlaystoreDownloader
A command line tool to download Android applications directly from the Google Play Store by specifying their package name (an initial one-time configuration is required)
File Explorer
Download Latest Version (.zip)- bug_report.md
- config.yml
- feature_request.md
- general_question.md
- codeql.yml
- macos.yml
- style.yml
- ubuntu.yml
- windows.yml
- pull_request_template.md
- profiles_settings.xml
- cmd_download.xml
- flask_download.xml
- test.xml
- jsLibraryMappings.xml
- misc.xml
- modules.xml
- PlaystoreDownloader.iml
- vcs.xml
- webResources.xml
- cli.gif
- preview-dynamic.gif
- preview-static.png
- web.gif
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- SECURITY.md
- SUPPORT.md
- __init__.py
- __main__.py
- argparser.py
- cli.py
- __init__.py
- downloader.py
- main.py
- multi_downloader.py
- out_dir.py
- __init__.py
- credentials.py
- meta.py
- playstore.py
- playstore_proto_pb2.py
- util.py
- __init__.py
- crawl_apps_by_developers.py
- crawl_top_apps_by_category.py
- download_from_file.sh
- package_crawler.sh
- site.css
- site.js
- index.html
- __init__.py
- test_credentials.py
- test_download.py
- test_playstore_api.py
- test_playstore_configuration.py
- test_session_fixtures.py
- .codecov.yml
- .coveragerc
- .dockerignore
- .gitattributes
- .gitignore
- credentials.json
- Dockerfile
- flask_app.py
- LICENSE
- Pipfile
- Pipfile.lock
- pyproject.toml
- README.md
# Installation Guide
git clone https://github.com/ClaudiuGeorgiu/PlaystoreDownloader
Downloads the entire project code from GitHub to your computer.
cd PlaystoreDownloader
Moves into the project folder you just downloaded.
2. Docker
Easy Recommended- Git Needed to download the project code from GitHub.
- Docker Desktop Needed to build and run containers. Install it and keep it running in the background.
$ docker --version
Type this command into your terminal and run it.
Docker version 20.10.7, build f0df350
Type this command into your terminal and run it.
$ # Download the Docker image.
Type this command into your terminal and run it.
$ docker pull claudiugeorgiu/playstore-downloader
Type this command into your terminal and run it.
$ docker tag claudiugeorgiu/playstore-downloader downloader
Type this command into your terminal and run it.
Pulled directly from this repo's README.
3. Python
Easyusage: python3 -m playstoredownloader.cli [-h] [-b] [-s] [-c FILE] [-o DIR] [-t TAG] package [package ...]
Runs the Python script (or module).
$ # python3 -m pip install pipenv
Installs the Python libraries listed in requirements.txt (or similar).
$ pipenv run python3 -m playstoredownloader.cli --help
Runs the Python script (or module).
$ pipenv run python3 -m playstoredownloader.cli "com.application.example"
Runs the Python script (or module).
Pulled directly from this repo's README.
