Ngtonic is a small tool created to manage personal finances directly from the terminal, avoiding the need to share sensitive financial data with third-party apps. It's tailored for my specific needs. Currently, Ngtonic only supports ING bank, leveraging its automatic categorization of movements.
I also created it as an example of building a project "the right way" on GitHub.
Consider using Ngtonic if you:
- Prefer not to use apps like Fintonic
- Primarily use ING for personal expenses
- Want a simple, terminal-based tool to check your finances
- Value privacy and keeping your financial data local
For those seeking more advanced features or a GUI, Firefly III might be a better option.
- Install using pipx (recommended) or pip:
pipx install ngtonic
-
Download your ING account movements as an Excel file.
-
Import the movements:
ngtonic import movements.xls
Your data is now stored locally in .ngtonic/movements.json
. You can import multiple files; Ngtonic will automatically deduplicate the data.
Ngtonic offers several commands:
โญโ Commands โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฎ
โ import Import movements files to the internal storage (only ING is supported) โ
โ list Show a table listing the movements with optional filtering โ
โ balance-plot Plot the evolution of the balance over time โ
โ month-plot Plot the movements grouped per month โ
โ find-bills Use a simple heuristic to find regular bills, like subscriptions โ
โฐโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโฏ
# Use category filtering to list home expenses
ngtonic list -c hogar
# List leisure expenses by month
ngtonic list -c ocio -m
# Check Steam purchases by month
ngtonic list -d steam -m
# Use the integrated heuristic to find regular bills
ngtonic find-bills
The plot commands enable you to visualize movements grouped by month or track the balance over time. You can apply the same filters available in the list command to customize these plots. Below are some example graphs (y axis has been removed for privacy).
# Income per mont (in my case, the payroll)
ngtonic month-plot -i
# Expenses on ocio category per month
ngtonic month-plot -c ocio
# The month-plot without any options is a good way to know your saving capacity
ngtonic month-plot
# And the balance plot will give you a more detailed way to check your cash flow
ngtonic balance-plot
Sometimes you may want to exclude certain transactions from your analysis, such as:
- Transfers between your own accounts or to other banks
- Large one-time transactions that skew your graphs
- Any movements you don't want to include in your financial overview
You can exclude these movements using the configuration file located at .ngtonic/config.yaml
. This file contains a list of filters; any movement matching these filters will be excluded from all commands.
Example configuration:
excluded_movements:
- category: "Inversiรณn"
- subcategory: "Ingresos de otras entidades"
- description: "Traspaso emitido Cuenta Nรณmina"
- description: "steam"
value: -675 # Excludes only this specific Steam transaction
pdm install
$(pdm venv activate)
pre-commit install
This command will create a virtual environment, install all dependencies (including Ngtonic itself), and set up helpful commit hooks. Any changes made to the code will take effect immediately without requiring reinstallation.
You can also run manually the linter with pdm lint
or the formatter with pdm format
.
The python packages are uploaded from the CI when creating a release, but you can create an whl locally with pdm build
.