| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
Codecov ReportAll modified and coverable lines are covered by tests ✅ Additional details and impacted files @@ 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 ☔ View full report in Codecov by Sentry.
|
Sorry, something went wrong.
|
A special container object is probably the cleanest solution? I'm not totally sure either, though. |
Sorry, something went wrong.
|
This is a super useful PR, it would be nice to see this eventually included. _unknown_2 = DataElementField(type='an')
_unknown_3 = DataElementField(type='an')
are also missing not just the transactions field, fints/parser.py:163: FinTSParserWarning: Ignoring parser error and returning generic object: Required field DIKKU2._unknown_2 was not present. Turn off robust_mode to see Exception. And then not even, the otherwise available balance field gets parsed, which would be nice to have in many scenarios, So I would suggest to go with: _unknown_2 = DataElementField(type='an', required=False) _unknown_3 = DataElementField(type='an', required=False) This has been working well for me so far. |
Sorry, something went wrong.
|
I can also confirm that these changes work very well with Sparkasse. Is there any chance this could be merged? |
Sorry, something went wrong.
|
There are two blockers currently:
|
Sorry, something went wrong.
I might be able to help with that. Let me know if that's even needed. |
Sorry, something went wrong.
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. |
Sorry, something went wrong.
| Back | FazBrowse Home | New Git URL |
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)