No description
Find a file
2025-03-05 22:45:45 +01:00
output WIP: Added reporting 2020-05-23 13:55:21 +02:00
schmeckels stats: Update year 2025-03-05 22:45:45 +01:00
.envrc Added .envrc 2023-02-20 22:13:41 +01:00
.flake8 wip 2022-03-23 20:12:09 +01:00
.gitignore Switch to poetry, more colors, better validation, fixed autosort dry-run 2020-10-31 00:47:28 +01:00
poetry.lock update dependencies 2025-03-05 22:41:03 +01:00
pyproject.toml Update packages 2023-07-19 22:56:42 +02:00
README.md Write some docs on how to use 2023-07-31 20:35:31 +02:00
shell.nix Added ruff 2023-07-19 22:56:35 +02:00

schmeckels

Installation

You need to have Python >= 3.8 and Poetry installed. Then you can run poetry install to create a virtuelenv and download all dependencies.

Usage

It's currently not packages so you have to use poetry run schmeckels <cmd>. Run it without a command to get a small help page listing all commands.

Commands

init

Run this once to create empty database and rules files

info

This will print some informations about your sorted/unsorted transactions and also show the location of your config files.

import

Run this to import CSV's from your bank

validate

Check the syntax of your rules. Good thing to do before running e.g. autosort

autosort

Run your defined rules against all unsorted transactions. Run with "-v --dry-run" after writing new rules is a good practice.

serve

Start the web interface.

sort

Manually sort all unsorted transactions.

stats

Render a really simple EUR (Einnahmen Überschuss Rechnung).

restart

Example rules

The rules file must be valid YAML and contain a list of all rules. A rule must contain:

  • a list of comma seperated tags
  • one or more matching RegExp via the name, iban or description field

Matching for the IBAN is made with direct comparison, so you have to enter the full IBAN. Matching for name and description is done via regular expressions.

# Match on the senders name
- name: "SUBWAY.*"
  tags: "FastFood"

# Match on the senders IBAN AND the description
- iban: "DE88500700100175526303"
  description: ".*VULTRHOLDIN.*"
  tags: "Hosting, Server" # Apply multiple tags