31 lines
628 B
Markdown
31 lines
628 B
Markdown
# 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 1–0) 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
|
||
```
|