-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskatbank-parse.py
51 lines (45 loc) · 1.88 KB
/
skatbank-parse.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import pandas as pd
import sys
import glob
import codecs
from datetime import datetime
import os
from pathlib import Path
"""Quick and dirty Skatbank-Account-data splitter --> just splits the Account-data into different csv-files
So I want to split it by Textschlüssel to filter regular and irregular payments"""
filenames = {'05 Basislastschrift':'S_Abbuchungen',
'08 Dauerauftrag':'S_Daueraufträge',
'52 Dauerauftrag':'H_SEPA_und_DA',
'16 SEPA Überweisung':'S_Überweisungen',
'51 Überweisungsgutschr.':'H_Überweisungen',
'31 Abschluss':'S_Abschluss_Skatbank',
'09 Retouren':'S_Retouren'}
def create_files(year, month, subset):
p = Path(f"out/{year}/{month}")
p.mkdir(parents=True, exist_ok=True)
for i,dat in subset.groupby('Buchungstext'):
try:
out = p/f'{i}.csv'
dat.to_csv(out,sep=";")
except:
pass
def main():
data=pd.read_csv(sys.argv[1], delimiter = ";", encoding="unicode_escape")
data = data.replace('\n','', regex=True)
data = data.replace(',','.', regex=True)
#data.columns = data.iloc[14]
print(data.head())
data.drop(['Valutadatum', 'IBAN Zahlungsbeteiligter','BIC (SWIFT-Code) Zahlungsbeteiligter','Waehrung'], axis=1, inplace=True)
for row in data.iterrows():
try:
data.at[row[0],"Month"] = datetime.strftime(datetime.strptime(row[1]["Buchungstag"],"%d.%m.%Y"),"%m")
data.at[row[0],"Year"] = datetime.strftime(datetime.strptime(row[1]["Buchungstag"],"%d.%m.%Y"),"%Y")
except:
pass
for year in set(data["Year"]):
for month in set(data["Month"]):
subset = data[(data["Month"] == month)&(data["Year"]==year)]
if len(subset) > 0:
create_files(year, month, subset)
if(__name__ == "__main__"):
main()