Takes CSV files from the ELBA electronic banking application and brings it into first normal form
Project description
ELBA CSV Tool
Author
Dominik Rappaport, dominik@rappaport.at
Motivation
I use a software application called iFinance to manage my bank accounts. iFinance includes a feature that allows automatic data downloads through an API provider. In earlier versions, the software supported two such providers: Tink and Plaid. My bank, Raiffeisen Bank in Austria, was accessible exclusively via Tink.
Unfortunately, beginning with iFinance version 5.4, support for Tink was discontinued in favor of Plaid as the sole provider. Consequently, iFinance was no longer able to retrieve data from my bank account. According to the vendor’s support team, Plaid may expand its support to additional banks in the future, although the statement was vague and no timeline was provided. Anticipating customer dissatisfaction, the company proactively announced that it would refund users who could no longer use the product under the new limitations.
As I had already been using iFinance for some time to organize my financial transactions, I preferred not to request a refund. Instead, I decided to continue using the software by importing data through the CSV import function.
Naturally, ELBA — the online banking system provided by Raiffeisen Bank — supports CSV exports. However, the structure of the exported file is suboptimal for data processing purposes.
Issue #1: Missing column headers
In a properly formatted CSV file, the first row typically contains column headers. The CSV export from ELBA, however, omits these headers, requiring the user to manually identify and assign them. Fortunately, this is a relatively minor inconvenience and can be resolved easily.
Issue #2: Data not in first normal form
The majority of each transaction’s data is contained within a single column as a string of key–value pairs. Unfortunately, these pairs are not separated by commas, and the keys themselves may contain whitespace. As the following example illustrates:
Verwendungszweck: BILLA DANKT 0003750 STOCKERAU 2000 Zahlungsreferenz: POS 50,26 AT D5 23.08. 18:00 Kartenzahlung mit Kartenfolge-Nr.: 5
In database terminology, this structure violates the first normal form (1NF). Automated parsing of this field presents a challenge: it is not straightforward to determine whether the final key is “Kartenfolge-Nr.” or whether “Kartenfolge” and “Nr.” are separate components of the key. The only viable approach is to define a comprehensive list of all possible keys and use it as a reference for parsing the data. Unfortunately, no official documentation describing these keys appears to exist.
To obtain properly structured data suitable for import into iFinance (or tools such as Excel), I decided to develop a small utility that performs the required data transformation.
Installation
Elbacsv is distributed as a Python package. Several installation methods are available.
Using pip
Executing pip installs the package in your current Python environment. Global installation was once possible, but
modern Linux distributions no longer permit this approach.
pip install elbacsv
Using pipx or uv
Both pipx and uv enable global tool installation. The package can be installed as follows:
pipx install elbacsv
or
uv tool install elbacsv
Usage
Download the CSV file from your bank account and run the following command:
elbacsv input.csv output.csv
You may add the option --merge. This will merge the two keys Verwendungszweck, Zahlungsreferenz and
Auftraggeberreferenz into a single field Verwendungszweck.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file elbacsv-0.1.1.tar.gz.
File metadata
- Download URL: elbacsv-0.1.1.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c597ecda3de5c4a1e2b6b7889fa02a44d73c49617a7b35c5e633edc2164080d5
|
|
| MD5 |
38326f63fda01fc2b6a28799faaa5715
|
|
| BLAKE2b-256 |
f61d69fa4a881dc95efc98c4114602e505a3270689e0176dee48696c15264261
|
File details
Details for the file elbacsv-0.1.1-py3-none-any.whl.
File metadata
- Download URL: elbacsv-0.1.1-py3-none-any.whl
- Upload date:
- Size: 8.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d08ee7103a5e613f57afc061350a6c621c4b042540ff86d24e64072d1ddc5bd7
|
|
| MD5 |
2f77fc47bdef4b31f68186ef70a5bd66
|
|
| BLAKE2b-256 |
564e56dccfbf452a9442422471f6c9a3eb28147530cb1ac634b8aad9cc1fcd24
|