ynabkit

YNAB Kit is a CLI tool to support data import and export from YNAB. It provides tools to convert data from Fineco and Satispay export files to YNAB CSV format.
Installation
Install this tool using pip
:
pip install ynabkit
Usage
For help, run:
ynabkit --help
You can also use:
python -m ynabkit --help
Development
To contribute to this tool, first checkout the code. Then create a new virtual environment:
cd ynabkit
python -m venv venv
source venv/bin/activate
Now install the dependencies and test dependencies:
pip install -e '.[test]'
To run the tests:
pytest