final update

This commit is contained in:
Louis Mylle
2026-01-10 15:04:21 +01:00
parent 757fc291b0
commit 3248060317
15 changed files with 1138 additions and 1020 deletions

View File

@@ -21,14 +21,27 @@ Een moderne PyQt5 GUI applicatie voor het scrapen van EBoek.info met dual scrapi
### Optie 1: Standalone Executable (Aanbevolen)
**Geen Python installatie nodig!**
**Windows:**
```cmd
# Bouw Windows .exe (run in Command Prompt)
scripts\build_exe.bat
# Of cross-platform builder:
python scripts\build_executable.py
```
**macOS/Linux:**
```bash
# Bouw executable (eenmalig)
python3 scripts/build_executable.py
# Distribueer het bestand uit dist/ folder
# ~30MB bestand met alles inbegrepen
# Of platform-specific:
./scripts/build_exe.sh
```
**Result:** `dist/EBoek_Scraper.exe` (Windows) of `dist/EBoek_Scraper` (Unix)
### Optie 2: Python Installatie
**Windows:**
```cmd