diff --git a/README.md b/README.md index 28f003c..b416777 100644 --- a/README.md +++ b/README.md @@ -21,6 +21,28 @@ Website Downloader CLI is a **tiny, pure-Python** site-mirroring tool that lets ## 🚀 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 # 1. Grab the code git clone https://github.com/PKHarsimran/website-downloader.git