Skip to main content

Romanian banks statement parser

Project description

bankreader

A light bank statement reader/parser. The project is oriented towards Romanian banks statements. Input for the reader is the already exported data from your bank of choice, the library will not support web interaction with bank APIs (if existing). At least not in the foreseeable future.

The project is still new and may suffer API modifications.

Currently there is support only for the Romanian Raiffeisen .xls statements.

Example

from bankreader.romania import RaiffeisenStatement
import os

statement_xls_path = os.path.join('test', 'statements', 'Extras_de_cont_12345678_20012018_31012018.xls')

statement = RaiffeisenStatement(xls_path=statement_xls_path)

print(statement.account_number)
print(statement.client.iban)
print(statement.client.client_address)

for transaction in statement.transactions:
    print(transaction.amount)
    print(transaction.description)
    print(transaction.is_income)

Other examples can be seen in the tests.

Installation

To install/use the module you can:

  • download, run pip install -r requirements and copy the bankreader folder to where you want to user it and simply use such as from bankreader ...
  • download the project and run setup.py install
  • install via pip: pip install bankreader

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

bankreader-0.2.3.tar.gz (7.3 kB view hashes)

Uploaded Source

Built Distributions

bankreader-0.2.3-py3.7.egg (12.9 kB view hashes)

Uploaded Source

bankreader-0.2.3-py3-none-any.whl (7.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page