Skip to content

ViktorStiskala/python-abo-generator

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

python-abo-generator

https://badge.fury.io/py/abo-generator.png

ABO banking format generator.

Currently supports only "CSOB" compatible format.

Specification sources: http://www.fio.cz/docs/cz/struktura-abo.pdf and http://www.equabank.cz/files/doc/13-format-abo.pdf (available only in czech).

Thanks to Lukas Hurych for providing generator code.

from datetime import datetime, timedelta
from abo import ABO

tomorrow = datetime.now() + timedelta(days=1)
abo_export = ABO(client_account_number='123456789/0300', client_name='Super company a.s.', due_date=tomorrow)

abo_export.add_transaction('123456789/0100', 500.34, variable_symbol='123456', message='Hello world!')
abo_export.add_transaction('155-987523423/2010', 1234.55, variable_symbol='789654321', message='Test transaction')

with file('example.pkc', 'w') as f:
    abo_export.save(f)

Installation

To install ABO generator, simply:

$ pip install abo-generator

License

This software is licensed under MPL 2.0.

About

ABO banking format generator

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages