Go to file
Kuba Orlik 52f0813c8d Remove /headers/ from format_86, they were claimed to be redundant 2023-11-07 12:52:27 +01:00
.gitignore Initial commit 2020-02-17 09:54:00 +01:00
LICENSE Create LICENSE 2020-02-17 10:03:58 +01:00
README.md Update README 2023-09-04 10:28:09 +02:00
data.py Initial commit 2020-02-17 09:54:00 +01:00
main.py Turn into mbank-compatible script 2023-09-03 15:31:36 +02:00
mbank.py Turn into mbank-compatible script 2023-09-03 15:31:36 +02:00
mt940.py Remove /headers/ from format_86, they were claimed to be redundant 2023-11-07 12:52:27 +01:00

README.md

Convert mBank export file to MT940 format

Fork of https://github.com/gerwin3/revolut-to-mt940

This small Python script converts mBank export files (in CSV) to MT940. You can use the MT940 to import statements in some bookkeeping software like SnelStart (which it was built for).

Disclaimer

This script comes without any warranty whatsoever. Do not use it in production. Do not use it if you are not familiar with how banks work, how bookkeeping software works, and if you do not have the technical know-how to make changes to this script yourself if something breaks. If you do use this script it might kill your cat or start World War 3. Don't come to me, I warned you.

Features

  • It is specifically built for getting mBank transactions into SnelStart.
  • Parses the mBank CSV file and extracts: timestamp, counterparty name, transaction description, transaction amount, fee amount, balance after transaction, counterparty IBAN.
  • This information is converted into a valid MT940 file.
  • mBank charges fees for transactions. These are included in the transaction (as mBank sees it). This could cause problems when importing into bookkeeping software as the amounts do not match up. This script will not include fees in transactions but insert "fake" transactions for each deducted fee. You will see those transactions separately in your bookkeeping software but in mBank they are included in the transaction.

Usage

  1. Clone the repository.
  2. Make sure you have Python 3.
  3. Run the following command:
python3 main.py \
	--in /path/to/mBank.csv \
	--out /path/to/mt.940

License

MIT