Financial ETL CLI: parse, normalize, and explore your bank transaction data.
This tool helps you process, visualize and search your balance and transaction information that you have exported from your bank accounts.
Currently supports DKB, Postbank, GLS and Scalable Capital Broker.
Supported file formats: CSV, HTML, and PNG. PNG parsing uses a local ollama instance with a multimodal model — opt-in via fintl.toml (required only for Scalable broker PNG statements; gracefully skipped when not configured).
All your data stays on your machine. No need to trust another entity that is PSD2 certified.
uv tool install fintlFrom pypi
pip install fintlor
uv add fintlFrom a local repo
git clone https://github.com/eschmidt42/fintl.git
cd fintl
uv sync
uv tool install .After installation, fintl should be available on your PATH:
which fintl
# e.g. /Users/YOURUSER/.local/bin/fintl- Configure your
~/.config/petprojects/fintl.toml. For details see here. - Go to your bank account.
- Select your service, e.g. Giro.
- Export csv file or similar to
~/Downloads, or directly your source dir for your bank / service. - Optionally, if you've stored your file in
~/Downloads, runcd ~/Downloadsfollowed byfintl store(uses yourfintl.tomlfrom step 1). - Optionally, if you want to process PNG screenshots via Ollama, start Ollama.
- Run the etl via
fintl etl(also uses yourfintl.tomlfrom step 1). - Upon success visualize / search your data via
fintl plotorfintl search.
Please see here and below for more usage details.
src/fintl/accounts_etl/— core ETL logic: schemas, parsers, registry, runnersrc/fintl/cli/— CLI entry point and subcommands (etl,store,search,plot)tests/— tests for packages of this repo
Run tests:
uv run pytest -n auto testsType check:
uv run ty check srcLint, format, type check, test and all the other good stuff:
prek run --all-filesTests that require a live Ollama instance are marked ollama and skipped by default. To run them, set FINTL_OLLAMA_MODEL to the name of a multimodal model you have pulled (e.g. qwen3.5:27b) and pass -m ollama:
FINTL_OLLAMA_MODEL=qwen3.5:27b uv run pytest -m ollama tests/FINTL_OLLAMA_BASE_URL can optionally override the default http://localhost:11434/v1.
Set the FINTL_CONFIG env var to point at any TOML file instead of ~/.config/petprojects/fintl.toml. A dev-config.toml is included at the repo root and wires all CLI commands to the fixture files under tests/.
To try the CLI commands, run:
mkdir /tmp/fintl-devThen you can run one of
rm -fr /tmp/fintl-dev/*
FINTL_CONFIG=dev-config.toml fintl etl
FINTL_CONFIG=dev-config.toml fintl plot
FINTL_CONFIG=dev-config.toml fintl store --from-dir <dir> --yes --copyOutput lands in /tmp/fintl-dev. Edit dev-config.toml locally to change providers, paths, or target directory.
Note: FINTL_CONFIG=dev-config.toml fintl etl is expected to produce one warning, failing to parse Screenshot 2026-03-09 at 14.30.54.png, because it in fact is an insufficient png file to parse the requested information from.
For release steps see here.