-
Notifications
You must be signed in to change notification settings - Fork 81
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement dikku2 #80
base: master
Are you sure you want to change the base?
Implement dikku2 #80
Conversation
Fixes #73 |
Codecov Report
@@ Coverage Diff @@
## master #80 +/- ##
==========================================
+ Coverage 88.79% 88.87% +0.07%
==========================================
Files 23 23
Lines 3035 3056 +21
==========================================
+ Hits 2695 2716 +21
Misses 340 340
Continue to review full report at Codecov.
|
A special container object is probably the cleanest solution? I'm not totally sure either, though. |
This is a super useful PR, it would be nice to see this eventually included.
are also missing not just the
And then not even, the otherwise available So I would suggest to go with:
This has been working well for me so far. |
I can also confirm that these changes work very well with Sparkasse. Is there any chance this could be merged? |
There are two blockers currently:
|
I might be able to help with that. Let me know if that's even needed. |
I can only second that. Happy to help as well. I don't think the patches may break anything as they only parse some fields which are not being parsed, yet. |
This implements DKKKU/DIKKU for fetching credit card transactions from f.e. comdirect.
I'm not quite happy with the API yet: The bank response includes additional data (card number and balance) but also a list of transactions for which a touchdown_point may be in use. How do we want to return that? Concatenate the transaction lists and return the other information separately (secondary question: from the first response or from the last response?)? Create a special container object? Just discard the additional information?
(Currently the function just returns a list of DIKKU2 objects)