YNAB transaction categorizer with Amazon order matching
Project description
YNAB TUI
A terminal user interface for categorizing YNAB (You Need A Budget) transactions with Amazon order matching.
Features
- TUI for transaction review - Review and categorize uncategorized transactions
- Amazon order matching - Scrapes your Amazon order history to identify purchased items
- Split transaction support - Split Amazon orders into individual items with separate categories
- Historical pattern learning - Learns from your categorization decisions for recurring payees
- Git-style workflow - Pull transactions to local DB, categorize offline, push changes back
- Multi-budget support - Switch between YNAB budgets
- Advanced filtering - Filter transactions by category, payee, or status
- Bulk tagging - Tag multiple transactions for batch operations
- Undo support - Revert categorizations before pushing
- CSV export - Export transaction data for external analysis
- Mock mode - Test without real credentials using synthetic data
Installation
Requires Python 3.11 (Python 3.12+ not yet supported due to a dependency issue with amazoncaptcha/pillow)
From PyPI (Recommended)
# With pip (ensure Python 3.11)
pip install ynab-tui
# With uv (specify Python version)
uv pip install ynab-tui --python 3.11
# With pipx
pipx install ynab-tui --python python3.11
From Source
git clone https://github.com/esterhui/ynab-tui.git
cd ynab-tui
uv sync --all-extras
Configuration
Initialize the configuration file:
ynab-tui init
This creates ~/.config/ynab-tui/config.toml. Edit it to add your credentials:
- YNAB API token (required) - Get from https://app.ynab.com/settings/developer
- Amazon credentials (optional) - For order history scraping via amazon-orders
You can also use environment variables instead of the config file:
export YNAB_API_TOKEN="your-token"
export AMAZON_USERNAME="your-email"
export AMAZON_PASSWORD="your-password"
Usage
TUI (Terminal User Interface)
# Launch the TUI
ynab-tui
# Or use mock mode (no credentials needed)
ynab-tui --mock
# Show version
ynab-tui --version
Vim-style keybindings:
j/k- Navigate up/downg/G- Go to top/bottomCtrl+d/u- Half page down/upc- Categorize (bulk if tagged)a- Approve (bulk if tagged)u- Undo pending changex- Split (Amazon multi-item)p- Push pending changes/- Search transactionsf- Filter menu (then:approvednewuncat pendingcategorypayeereset)t- Tag/untag for bulk operationsT- Clear all tagsb- Switch budgetm- Edit memos- Settings?- HelpEnter- Categorize selected (same asc)Escape- Quit (same asq)F5- Refresh transactionsq- Quit
CLI Commands
# Setup
ynab-tui init # Create config file at ~/.config/ynab-tui/config.toml
# Sync commands (git-style pull/push)
ynab-tui pull # Pull YNAB + Amazon data to local DB
ynab-tui pull --full # Full pull of all data
ynab-tui pull --fix # Fix conflicts by marking for push to YNAB
ynab-tui push # Push local categorizations to YNAB
ynab-tui push --dry-run # Preview what would be pushed
# List uncategorized transactions
ynab-tui uncategorized
# Database inspection
ynab-tui db-status # Show sync status and statistics
ynab-tui db-deltas # Show pending changes before push
ynab-tui ynab-budgets # List available budgets
# Category mappings (learn from history)
ynab-tui mappings # Query learned item->category mappings
ynab-tui mappings-create # Build mappings from approved transactions
# Test connections
ynab-tui ynab-test
ynab-tui amazon-test
Makefile
A Makefile is provided for common tasks. Run make help to see all available targets:
YNAB TUI
Make targets:
make install - Install dependencies
make run - Launch TUI application
make test - Run tests
make coverage - Run tests with coverage report
make sloc - Count lines of code (requires scc)
make check - Lint code
make format - Format code
make mock-data - Generate synthetic mock CSV data (deterministic)
make mock-prod-data - Export production DB to mock CSV files
make clean - Remove cache files
Sync commands (git-style):
make pull - Pull YNAB + Amazon data to local DB (incremental)
make pull-full - Full pull of all data
make push - Push local categorizations to YNAB
make push-dry - Preview what would be pushed
make db-status - Show database sync status
CLI examples:
uv run python -m ynab_tui.main # Launch TUI
uv run python -m ynab_tui.main amazon-match # Match Amazon transactions
uv run python -m ynab_tui.main uncategorized # List uncategorized transactions
uv run python -m ynab_tui.main --help # Show all commands
Mock mode (no live APIs):
uv run python -m ynab_tui.main --mock # Launch TUI with mock data
uv run python -m ynab_tui.main --mock db-clear # Only clears mock DB
How It Works
- Pull transactions from YNAB and orders from Amazon to local SQLite database
- Match Amazon transactions to orders by amount and date (fuzzy matching)
- Review uncategorized transactions in the TUI
- Categorize using the category picker or split into individual items
- Push your changes back to YNAB
Data Storage
Transaction and order data is stored locally in an unencrypted SQLite database at ~/.config/ynab-tui/categorizer.db. This includes your YNAB transactions, Amazon order history, and categorization decisions.
For security, ensure appropriate file permissions:
chmod 600 ~/.config/ynab-tui/*.db
Database encryption is planned for a future release.
Logging
Logs use Python's standard logging module. By default, WARNING+ logs go to stderr.
To see INFO level logs (push verification, conflict detection):
# Add to your shell before running ynab-tui:
export PYTHONWARNINGS=default
python -c "import logging; logging.basicConfig(level=logging.INFO)" && ynab-tui
# Or create a wrapper script with logging enabled
What gets logged:
- WARNING: Conflict detection (YNAB returned uncategorized but local has category)
- WARNING: Push verification failures
- INFO: Push verification success details (category sent/received)
Conflict Detection
If YNAB resets a categorized transaction to "Uncategorized" (e.g., due to bank re-import), ynab-tui detects this as a conflict:
- Local category is preserved (not overwritten by YNAB's "Uncategorized")
- Transaction shows "!" flag in the TUI status column
- Warning logged with transaction ID and preserved category
This protects your categorization work from being lost when banks re-import transactions.
Resolving conflicts with --fix:
When conflicts are detected, you can use pull --fix to mark them for push back to YNAB:
# See what conflicts exist
ynab-tui pull --dry-run
# Output: ! CONFLICTS (local category preserved):
# ! 2025-12-21 Trader Joe's $-177.28 Groceries→Uncat
# Fix conflicts (mark local categories for push)
ynab-tui pull --fix
# Output: F FIXED (will push on next 'push'):
# F 2025-12-21 Trader Joe's $-177.28 Groceries
# Push the fixed categories back to YNAB
ynab-tui push
The --fix flag creates pending changes that will restore your local categories to YNAB on the next push.
Typical Workflow
First time setup:
# Do a full pull to download all YNAB transactions and Amazon order history
ynab-tui pull --full
Ongoing usage:
# 1. Pull new transactions (incremental - only fetches recent changes)
ynab-tui pull
# 2. Launch the TUI to review and categorize
ynab-tui
# 3. In the TUI: navigate with j/k, categorize with 'c', approve with 'a'
# For Amazon orders, use 'x' to split into individual items
# 4. Push your changes back to YNAB (from CLI or use 'p' in TUI)
ynab-tui push
# Optional: preview changes before pushing
ynab-tui push --dry-run
Amazon Order Matching
YNAB transactions from Amazon typically show as "Amazon.com" with just the total amount, making it difficult to know what you actually purchased. This tool uses amazon-orders to scrape your Amazon order history and match transactions to specific orders.
How matching works:
- Matches by amount (within $0.10 tolerance) and date (7-day window, extended to 24 days if needed)
- Once matched, the TUI shows the actual items purchased instead of just "Amazon.com"
- You can then categorize the whole order, or use split (
x) to break it into individual items with separate categories
Example: A $45.67 Amazon transaction gets matched to an order containing:
- Book: "Clean Code" - $29.99 → Categorize as "Books"
- USB Cable - $15.68 → Categorize as "Electronics"
This makes Amazon transactions much easier to categorize accurately.
Development
# Run tests
uv run pytest tests/ -v
# Lint and format
uv run ruff check ynab_tui/ tests/
uv run ruff format ynab_tui/ tests/
# Run with mock data (no credentials needed)
ynab-tui --mock
# Build package
make build
# Full release check (lint, test, build)
make release
License
MIT
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 ynab_tui-0.3.0.tar.gz.
File metadata
- Download URL: ynab_tui-0.3.0.tar.gz
- Upload date:
- Size: 428.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ed249e60999c57d78f54b6fb284fc8a3649561ff42f6a031c08c7f3ad79dc7a
|
|
| MD5 |
b80adb1123f13b78d3903b365aaca5a8
|
|
| BLAKE2b-256 |
7945d48de4f03b010de7befd4757070ab760f4cfb9e4d35f12621d43c571a9a9
|
Provenance
The following attestation bundles were made for ynab_tui-0.3.0.tar.gz:
Publisher:
publish.yml on esterhui/ynab-tui
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ynab_tui-0.3.0.tar.gz -
Subject digest:
6ed249e60999c57d78f54b6fb284fc8a3649561ff42f6a031c08c7f3ad79dc7a - Sigstore transparency entry: 814192979
- Sigstore integration time:
-
Permalink:
esterhui/ynab-tui@3ad275dcc707db402179387b764f0fa2dca4431e -
Branch / Tag:
refs/heads/main - Owner: https://github.com/esterhui
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@3ad275dcc707db402179387b764f0fa2dca4431e -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file ynab_tui-0.3.0-py3-none-any.whl.
File metadata
- Download URL: ynab_tui-0.3.0-py3-none-any.whl
- Upload date:
- Size: 155.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6a9e80b358e0f5e57e6d46db1b62a36eff3ffd26516230b5434c16aa3e73b273
|
|
| MD5 |
a8e3996354621a8d99d5422599641385
|
|
| BLAKE2b-256 |
f47ca322c5ba57dd0bcb87867197671d4a882f9417de06b4f3a701e81f01a5a7
|
Provenance
The following attestation bundles were made for ynab_tui-0.3.0-py3-none-any.whl:
Publisher:
publish.yml on esterhui/ynab-tui
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ynab_tui-0.3.0-py3-none-any.whl -
Subject digest:
6a9e80b358e0f5e57e6d46db1b62a36eff3ffd26516230b5434c16aa3e73b273 - Sigstore transparency entry: 814192981
- Sigstore integration time:
-
Permalink:
esterhui/ynab-tui@3ad275dcc707db402179387b764f0fa2dca4431e -
Branch / Tag:
refs/heads/main - Owner: https://github.com/esterhui
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@3ad275dcc707db402179387b764f0fa2dca4431e -
Trigger Event:
workflow_dispatch
-
Statement type: