An app to organize photos
Project description
Yaffo - Photo Organizer
A Flask-based photo organization tool that uses EXIF metadata, face recognition, and duplicate detection to automatically organize and index photos.
Features
- Photo Organization: Automatically organize and index photos by date using EXIF metadata
- Face Detection & Recognition: Detect, group, and tag faces by person using InsightFace (SCRFD detection + ArcFace embeddings, on ONNX Runtime)
- Duplicate Detection: Find duplicate photos using perceptual hashing
- EXIF Metadata: Extract and display photo metadata
- Location Support: Geocoding, reverse-geocoding, and time-correlation geotagging from neighboring photos
- Auto-Labeling: Offline zero-shot classification (CLIP) tags photos against a user vocabulary
- Automations: Scheduled and event-driven background behaviors (system-built and AI-generated)
- AI Page Builder: Build custom pages from AI-generated, sandboxed widgets over your own photo data
Prerequisites
- Python 3.13+
- Node.js 18+ (for UI tests)
- ExifTool (see EXIFTOOL_SETUP.md)
Quick Start
1. Clone and Setup
git clone <repository-url>
cd yaffo
# Create virtual environment
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
# Install dependencies
pip install -e .
2. Install Git Hooks
./hooks/install.sh
This installs pre-commit hooks that prevent accidental commit of API keys and secrets.
3. Configure the Data Directory
YAFFO_DATA_DIR is the root for the app's own state — the SQLite databases
(yaffo.db, yaffo-queue.db), generated thumbnails, logs, and temp/trash. It
defaults to the OS user-data dir (e.g. ~/Library/Application Support/yaffo on
macOS); set it to override:
export YAFFO_DATA_DIR=/path/to/data
Your actual photo (media) directories are configured separately, in the app's Settings page — they aren't a fixed subfolder. The file sync / watcher scans the configured media dirs and indexes what it finds.
4. Run the Application
# Start the Flask web app
flask run
# In a separate terminal, start the background task host (spawn worker pool)
python -m yaffo.taskq.host
# Or launch the whole local stack (Flask + task host + watcher) at once
inv app-local
The app will be available at http://127.0.0.1:5000
Installed App Launcher
For an installed PyPI/pipx copy, use the app launcher instead of the Flask development server:
pipx install yaffo
yaffo setup
yaffo setup can install a per-user desktop/app shortcut, runs database
migrations, downloads runtime assets up front, and asks whether to launch the app.
Runtime startup still checks migrations and assets, so yaffo remains safe to run
directly.
yaffo install-shortcut
The shortcut launches the installed Python entry point directly, so it does not
depend on your shell PATH. A yaffo-gui entry point is also installed for
platforms that distinguish console and GUI launchers.
Before uninstalling the package, clean up app-managed files:
yaffo uninstall
pipx uninstall yaffo
The uninstall command removes the shortcut, downloaded assets, and logs, then asks before deleting Yaffo user data such as the SQLite databases and config.
Project Structure
yaffo/
├── yaffo/ # Main application
│ ├── app.py # Flask app factory
│ ├── common.py # Configuration and paths
│ ├── db/ # Database models and repositories
│ ├── routes/ # API endpoints
│ ├── templates/ # Jinja2 templates
│ ├── static/ # CSS, JavaScript
│ ├── utils/ # Utility functions
│ ├── background_tasks/ # Background task definitions
│ ├── taskq/ # SQLite-backed task queue + spawn worker host
│ ├── site_agents/ # AI page builder: agent, model clients, tools, schemas
│ └── scripts/ # CLI tools + db/ (init_db, dev migrations)
├── tests/ # Python unit tests
├── yaffo_ui_tests/ # Playwright UI tests
├── hooks/ # Git hooks
├── docs/ # Design references (taskq, automations, page builder, video)
└── resources/ # UI resources bundled with the app
Development
Running Tests
# Python unit tests
pytest
# UI tests (requires app running)
cd yaffo_ui_tests
npm install
npm test
# UI tests in isolated environment
npm run test:isolated
Database
The app uses SQLite. The database file is stored at {YAFFO_DATA_DIR}/yaffo.db.
To reset the database:
rm /path/to/data/yaffo.db
flask run # Will recreate on startup
Background Tasks
Background tasks (photo indexing, face detection, etc.) run on a small
purpose-built queue (yaffo/taskq): a SQLite-durable queue plus a host process
that supervises a pool of spawn-started worker children, so CPU-bound native ML
inference (InsightFace/ONNX Runtime) runs in parallel, isolated, and
crash-contained. See docs/development/task-queue.md.
# Start the task host with 4 workers, recycling each after 200 tasks
python -m yaffo.taskq.host --workers 4 --recycle 200
# Or via invoke
inv start-tasks --workers=4
Tests drive tasks synchronously by setting task_queue.immediate = True.
UI Testing
The project includes an AI-augmented UI testing framework. See yaffo_ui_tests/README.md for details.
cd yaffo_ui_tests
# Install dependencies
npm install
npx playwright install
# Run tests against running app
npm test
# Run tests in isolated environment (recommended)
npm run test:isolated
Environment Variables
| Variable | Description | Default |
|---|---|---|
YAFFO_DATA_DIR |
Root for app state (DBs, thumbnails, logs, temp) | OS user-data dir (e.g. ~/Library/Application Support/yaffo); inv sets ~/Pictures for dev |
FLASK_APP |
Flask application module | yaffo.app:create_app |
FLASK_ENV |
Flask environment | development |
ANTHROPIC_API_KEY |
Anthropic API key for the AI Page Builder and AI-generated automations. Optional override — the key is normally stored in the OS keychain (set via Settings); the env var wins when present (headless/CI). | (unset; keychain used) |
Git Hooks
The project includes pre-commit hooks to prevent accidental commit of secrets:
# Install hooks (run once after cloning)
./hooks/install.sh
The pre-commit hook scans for:
- Anthropic API keys (
sk-ant-...) - OpenAI API keys (
sk-...) - Generic API key patterns
Licenses
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file yaffo-0.0.18.tar.gz.
File metadata
- Download URL: yaffo-0.0.18.tar.gz
- Upload date:
- Size: 985.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90edacb232d84d185cee87fc8ea9f28679080016e35c6f2341378e81a269620e
|
|
| MD5 |
52aec8b7d9a40e4f6dad0ca1c2229114
|
|
| BLAKE2b-256 |
bbee76d0578ed5d1c209d09a099a90495cf3cbcb885f8112f1d079b8604e3736
|
Provenance
The following attestation bundles were made for yaffo-0.0.18.tar.gz:
Publisher:
release.yml on Jason-Turan0/yaffo
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yaffo-0.0.18.tar.gz -
Subject digest:
90edacb232d84d185cee87fc8ea9f28679080016e35c6f2341378e81a269620e - Sigstore transparency entry: 2083873160
- Sigstore integration time:
-
Permalink:
Jason-Turan0/yaffo@cc9a4ba6163f7072b82262f4d65e38162733d46f -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Jason-Turan0
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@cc9a4ba6163f7072b82262f4d65e38162733d46f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file yaffo-0.0.18-py3-none-any.whl.
File metadata
- Download URL: yaffo-0.0.18-py3-none-any.whl
- Upload date:
- Size: 1.2 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25398a928c75d6436455b4c3914f814dd1ea50b95926c2cc21892db2b67f93ef
|
|
| MD5 |
c715c739431e29b55e5f7f1b5dbcda72
|
|
| BLAKE2b-256 |
f22dcbf19169be9b1f10ab5ab28c3170c65611f6e3463233b3a6b72a2907b5b2
|
Provenance
The following attestation bundles were made for yaffo-0.0.18-py3-none-any.whl:
Publisher:
release.yml on Jason-Turan0/yaffo
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
yaffo-0.0.18-py3-none-any.whl -
Subject digest:
25398a928c75d6436455b4c3914f814dd1ea50b95926c2cc21892db2b67f93ef - Sigstore transparency entry: 2083873203
- Sigstore integration time:
-
Permalink:
Jason-Turan0/yaffo@cc9a4ba6163f7072b82262f4d65e38162733d46f -
Branch / Tag:
refs/heads/master - Owner: https://github.com/Jason-Turan0
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@cc9a4ba6163f7072b82262f4d65e38162733d46f -
Trigger Event:
workflow_dispatch
-
Statement type: