-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.py
51 lines (51 loc) · 1.09 KB
/
config.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
configuration = {
# csv export of bank account
"inputFile": "Umsatz-Example.csv",
# month to analyze (0 = all)
"filterMonth": 0,
# html should be generated (otherwise just jpeg)
"htmlOutput": True,
# list of names to be considered as income
"einkommen": [
"Musterunternehmen"
],
# list of names to be considered as expenses
"ausgaben": {
"nahrungsmittel": [
"Lidl",
"Rewe",
"Aldi",
"Kaufland",
"Real",
"Netto",
"Edeka",
"MCDonalds"
],
"hygiene": [
"Muller",
"Tedi",
"Rossmann",
"Dm"
],
"transport": [
"DB"
],
"internet": [
"Internetanbieter",
"Allnet"
],
"miete": [
"Immobilien",
"ARD"
],
"shopping": [
"AMAZON",
"Ebay",
"PayPal",
"PUSTET",
"SATURN"
]
},
# debugging information
"debug": False
}