https://github.com/engineerdanny/apk-downloader
A package that helps users to directly download an APK from Google Play by providing the package id of the app.
https://github.com/engineerdanny/apk-downloader
android apk apktool downloader googleplay python
Last synced: 22 days ago
JSON representation
A package that helps users to directly download an APK from Google Play by providing the package id of the app.
- Host: GitHub
- URL: https://github.com/engineerdanny/apk-downloader
- Owner: EngineerDanny
- License: mit
- Created: 2022-02-11T11:05:59.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-02-25T19:44:52.000Z (about 1 year ago)
- Last Synced: 2024-02-25T20:48:13.168Z (about 1 year ago)
- Topics: android, apk, apktool, downloader, googleplay, python
- Language: Python
- Homepage:
- Size: 36.1 KB
- Stars: 33
- Watchers: 1
- Forks: 5
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
Apk Downloader
![]()
About |
Features |
Technologies |
Requirements |
Starting |
License |
Author
## :dart: About
This package helps you to directly download an APK from Google Play by providing the package id of the app.
## :sparkles: Features
:heavy_check_mark: Feature 1.
Verifies the package ID of an app:heavy_check_mark: Feature 2.
Downloads the latest apk version on Google Play## :rainbow: Technologies
The following packages were used in this Python Project:
- [requests](https://pypi.org/project/requests/)
- [BeautifulSoup](https://pypi.org/project/beautifulsoup4/)
- [colored](https://pypi.org/project/colored/)
- [Regular Expressions (re)](https://docs.python.org/3/library/re.html)## :white_check_mark: Requirements
Before starting :checkered_flag:, you need to have [Git](https://git-scm.com) and [Python🐍](https://www.python.org) installed.
## :checkered_flag: Starting
```bash
# Clone this project
$ git clone https://github.com/EngineerDanny/apk-downloader# Access
$ cd apk-downloader# Install dependencies
$ `pip install -r requirements.txt` or `pip3 install -r requirements.txt`
```## :rocket: Running
```bash
# Command
$`python main.py {bundle identifier}` or `python3 main.py {bundle identifier}`# Example
$`python main.py com.imdb.mobile` or `python3 main.py com.imdb.mobile`
```## :memo: License
This project is under license from MIT. For more details, see the [LICENSE](LICENSE.md) file.
Made with :heart: by EngineerDanny