项目作者: michaelsproul

项目描述 :
Make batch payments from Australian banks
高级语言: Python
项目地址: git://github.com/michaelsproul/bulk-pay-aus.git
创建时间: 2016-12-30T04:55:45Z
项目社区:https://github.com/michaelsproul/bulk-pay-aus

开源协议:GNU General Public License v3.0

下载


CSV to ABA/Cemtex

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:

  • How do I make payments to multiple people at once?
  • How do I automate payments for my business?
  • How do I transfer money from a bank account using an API?

Quickstart - Using Docker

Build it…

  1. $ docker build -t aba .

Run it…

  1. # run this if you're on macOS - your timezone will be set correctly
  2. $ docker run --rm -ti -p 8000:8000 -e "TZ=$(readlink /etc/localtime | sed 's#/var/db/timezone/zoneinfo/##')" aba
  3. # run this one if you're not (your time zone will be UTC, sorry)
  4. $ docker run --rm -ti -p 8000:8000 aba

Open it…

Direct your browser to http://localhost:8000/

screenshot

Done!

CSV Format

  1. Recipient BSB, formatted with a dash, e.g. 123-456
  2. Recipient account number
  3. Recipient name
  4. Amount in cents to pay to this recipient
  5. Transaction reference - some text that the recipient will see
  1. 123-456,12345678,Recipient Name,350,PAY OF THREE FIFTY

License

Copyright Michael Sproul 2016.

Licensed under the terms of the GNU General Public License Version 3 or later (GPLv3+).

Credits

ABA generation is done using @jkal‘s python-aba library.