Simple formatter to transform PostFinance account statement CSV format to a format usable for import in YNAB
Requires Python 3 and Pandas (pip3 install pandas
).
- Download transactions from PostFinance using the 'Export' Feature
- Use the script from command line to transform the downloaded CSV into YNAB-compatible CSV:
# For normal account transactions
python3 pf2ynab.py <path-to-csv>
# For credit card transactions
python3 pfcc2ynab.py <path-to-scv>
- The files will be saved in the original directory as FileName_YNAB.csv
- Drag-and-drop to YNAB to import the transactions
This is provided as-is. Feel free to submit PRs or issues, but don't expect any regular maintenance.
Credits go to ChatGPT.