This commit is contained in:
Hirnwunde
2026-02-26 08:42:12 +01:00
commit 87ab7ee73c
16 changed files with 1368 additions and 0 deletions

30
README.md Normal file
View File

@@ -0,0 +1,30 @@
# Photo Sorter (PyQt6)
Einfache Desktop-Anwendung zum schnellen Sortieren von Fotos per Tastatur.
## Features
- Quellverzeichnis auswählen und alle Bilder nacheinander anzeigen
- Bis zu 10 Zielverzeichnisse (Tasten 10) mit optionalen Labels
- Verschieben oder Kopieren (global konfigurierbar, Standard: Verschieben)
- Undo-Funktion für die letzte Aktion
## Installation
```bash
cd pyPhotoSorter
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -r requirements.txt
```
## Start
```bash
python -m photo_sorter.main
```
Oder direkt:
```bash
python photo_sorter/main.py
```