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.
- 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.
- Python 3.x
- pip (Python's package manager)
- colorama
- requests
- beautifulsoup4
To install the script, run the following command:
curl -sSL https://raw.githubusercontent.com/lautarovculic/appUpdateChecker/main/install.sh | bashThis will:
Download the script to $HOME/.local/bin/appUpdateChecker
After installation, you can execute the script using:
appUpdateCheckerArgument Description
-p, --package Add a package to the tracker.
-d, --delete Remove a package from tracking.
If you have issues with requeriments (requests, colorama, beautifulsoup4) Install the required Python libraries:
pip install -r requirements.txtappUpdateChecker -p com.example.myappappUpdateChecker -d com.example.myappSimply run the script without arguments:
appUpdateCheckerThe script stores its data in:
~/.local/share/appUpdateChecker/data.jsonThis file contains information about the tracked packages, including their last update date and the date they were added.
This project is licensed under the WTFPL License.
