Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lautarovculic/appupdatechecker
A simple Python script to track the update status of Android apps on the Google Play Store. This tool allows you to add, delete, and check updates for packages, storing the data locally.
https://github.com/lautarovculic/appupdatechecker
android app application appupdatechecker checker hacking mobile playstore update
Last synced: about 5 hours ago
JSON representation
A simple Python script to track the update status of Android apps on the Google Play Store. This tool allows you to add, delete, and check updates for packages, storing the data locally.
- Host: GitHub
- URL: https://github.com/lautarovculic/appupdatechecker
- Owner: lautarovculic
- License: wtfpl
- Created: 2024-11-18T10:39:31.000Z (2 days ago)
- Default Branch: main
- Last Pushed: 2024-11-18T11:47:19.000Z (2 days ago)
- Last Synced: 2024-11-18T12:00:40.188Z (2 days ago)
- Topics: android, app, application, appupdatechecker, checker, hacking, mobile, playstore, update
- Language: Python
- Homepage: https://lautarovculic.com
- Size: 12.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# App Update Checker v0.1.1
A simple Python script to track the update status of Android apps on the Google Play Store. This tool allows you to add, delete, and check updates for packages, storing the data locally.
![Example](https://i.imgur.com/RPe4Cvb.png)
## Features
- Add Android app packages to a tracking list.
- Check the last update date of apps on the Google Play Store.
- Automatically update tracking information for apps.## Requirements
- Python 3.x
- pip (Python's package manager)
- colorama
- requests
- beautifulsoup4## Installation
To install the script, run the following command:
```bash
curl -sSL https://raw.githubusercontent.com/lautarovculic/appUpdateChecker/main/install.sh | bash
```This will:
Download the script to $HOME/.local/bin/appUpdateChecker
# Usage
## Run the script
After installation, you can execute the script using:
```bash
appUpdateChecker
```### Options
```text
Argument Description
-p, --package Add a package to the tracker.
-d, --delete Remove a package from tracking.
```# Install Dependencies
If you have issues with requeriments (requests, colorama, beautifulsoup4)
Install the required Python libraries:
```bash
pip install -r requirements.txt
```## Examples
### Add a package
```bash
appUpdateChecker -p com.example.myapp
```### Delete a package
```bash
appUpdateChecker -d com.example.myapp
```### Check for updates
Simply run the script without arguments:
```bash
appUpdateChecker
```
# File Structure
The script stores its data in:
```bash
~/.local/share/appUpdateChecker/data.json
```This file contains information about the tracked packages, including their last update date and the date they were added.
# License
This project is licensed under the WTFPL License.