Skip to content

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.

License

Notifications You must be signed in to change notification settings

lautarovculic/appUpdateChecker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

App Update Checker v0.2.0

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

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:

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:

appUpdateChecker

Options

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:

pip install -r requirements.txt

Examples

Add a package

appUpdateChecker -p com.example.myapp

Delete a package

appUpdateChecker -d com.example.myapp

Check for updates

Simply run the script without arguments:

appUpdateChecker

File Structure

The script stores its data in:

~/.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.

About

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.

Topics

Resources

License

Stars

Watchers

Forks