Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 935 Bytes

File metadata and controls

41 lines (27 loc) · 935 Bytes

📥 Installation Guide

Follow these steps to set up the Web Cloner on your local machine.

1. Prerequisites

  • Python 3.10 or higher must be installed.
  • pip (Python package installer).

2. Install Dependencies

Open your terminal or command prompt in the project root and run:

pip install -r requirements.txt

Required Packages:

  • customtkinter: Modern UI components.
  • requests: Handling web requests.
  • beautifulsoup4: HTML parsing.
  • Pillow: Image processing for icons.
  • lxml: High-performance HTML parsing.

3. Running the App

Execute the main script:

python web-cloner.py

🏗️ Building Standalone Binaries

To create a single executable file, you can use the provided build scripts:

  • Linux: ./build_linux.sh
  • Windows: build_windows.bat
  • macOS: ./build_macos.sh

Note: You must have pyinstaller installed (pip install pyinstaller).