Professional Browser Auto-Reload Tool — by Uzair Arain
View on GitHub Download ZIPAutoReload 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.
--websites, --keep-awake, --min-interval,
--max-interval
git clone https://github.com/UzairArain2008/Python-Auto-Reload.git
cd Python-Auto-Reload
python -m venv venv
Activate:
Windows
venv\Scripts\activate
macOS / Linux
source venv/bin/activate
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
Interactive mode:
autoreload
CLI flags mode:
autoreload --websites https://upwork.com https://fiverr.com --keep-awake True --min-interval 60 --max-interval 120
autoreload -h
autoreload --version