Aggiorna README.md

This commit is contained in:
Fabio 2025-12-11 00:02:06 +08:00
parent 06a29f4640
commit cae521a336

View file

@ -21,6 +21,28 @@ Website Downloader CLI is a **tiny, pure-Python** site-mirroring tool that lets
## 🚀 Quick Start ## 🚀 Quick Start
```sh
sudo -s
cd /usr/local
mkdir python
https://forgit.patachina.it/Fabio/website-downloader.git
cd website-downloader
sudo apt install python3-full python3-venv -y
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python website-downloader.py \
--url https://harsim.ca \
--destination harsim_ca_backup \
--max-pages 100 \
--threads 8
deactivate
cp downloadsite.sh /usr/local/bin
exit
```
```bash ```bash
# 1. Grab the code # 1. Grab the code
git clone https://github.com/PKHarsimran/website-downloader.git git clone https://github.com/PKHarsimran/website-downloader.git