Files
pyPhotoSorter/README.md
Hirnwunde 87ab7ee73c first
2026-02-26 08:42:12 +01:00

31 lines
628 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 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
```