Make batch payments from Australian banks
This is a web-based tool for creating ABA/“Cemtex” files used by Australian banks for bulk payments.
You upload a CSV file in a simple format, and the website converts it to the ABA format.
This might be the right solution for you if you’ve ever asked any of the following questions:
Build it…
$ docker build -t aba .
Run it…
# run this if you're on macOS - your timezone will be set correctly
$ docker run --rm -ti -p 8000:8000 -e "TZ=$(readlink /etc/localtime | sed 's#/var/db/timezone/zoneinfo/##')" aba
# run this one if you're not (your time zone will be UTC, sorry)
$ docker run --rm -ti -p 8000:8000 aba
Open it…
Direct your browser to http://localhost:8000/
Done!
123-456,12345678,Recipient Name,350,PAY OF THREE FIFTY
Copyright Michael Sproul 2016.
Licensed under the terms of the GNU General Public License Version 3 or later (GPLv3+).
ABA generation is done using @jkal‘s python-aba library.