AutoReload CLI

Professional Browser Auto-Reload Tool — by Uzair Arain

View on GitHub Download ZIP

About

AutoReload CLI is a terminal tool that automates refreshing of websites. It supports interactive step-by-step mode as well as CLI flags for advanced users. Colored logs, professional banner, and "keep awake" mode make it useful for developers and freelancers.

Features

Installation

1. Clone Repository

git clone https://github.com/UzairArain2008/Python-Auto-Reload.git cd Python-Auto-Reload

2. Create Virtual Environment (Recommended)

python -m venv venv

Activate:

Windows

venv\Scripts\activate

macOS / Linux

source venv/bin/activate

3. Install in Editable Mode

pip install -e .

This command installs the project locally and registers the autoreload command inside your virtual environment. The -e flag means editable mode — you can modify the source code and changes apply immediately without reinstalling.

After installation, run:

autoreload

Usage

Interactive mode:

autoreload

CLI flags mode:

autoreload --websites https://upwork.com https://fiverr.com --keep-awake True --min-interval 60 --max-interval 120

Help & Version

autoreload -h autoreload --version