Henryk Plötz
Henryk Plötz
To add some food for thought: Here is an article discussing the different "canonical" encodings in CBOR: https://www.imperialviolet.org/2022/04/17/canonsofcbor.html It also proposes a naming scheme. RFC 7049 seems to describe "three-step"...
So, the way I found this is that OpenAPI in sanic-ext doesn't work for me. It's here: https://github.com/sanic-org/sanic-ext/blob/50aa9782e37eb92cdef3db73e703ca6eb2c1ba1f/sanic_ext/extensions/openapi/extension.py#L38 I think that "figure out what the external URL of a route...
Ok, yeah, my *real* goal is getting external URL working for "weird" reverse proxy setups. Basically a config option "external base url" would suffice. I was mostly looking at the...
The following workaround can be used (e.g. with docker-compose). Create a file `nextcloud-apache.conf` with the following contents: ```` LimitRequestBody 0 ```` and bind mount into the container. E.g. in docker-compose:...
@runiq Can you reconfirm that you can get valid credit card transactions with `get_credit_card_transactions()`? Because I don't have a bank/card combo that supports that, so I just guessed when writing...
I now remembered that I do have a test account and credit card with comdirect, just hadn't realized they implement DKKKU2. I'm tracking my work at https://github.com/henryk/python-fints/tree/implement-dikku2
(Note: The correct way to get the list of accounts and available operations is `get_information()`, we should document that. `get_sepa_accounts()` was a protocol level kludge for the SEPA change-over, and...
So, the core issue here is this interaction: ```` fints.segments.auth.HKTAN6( # Zwei-Schritt-TAN-Einreichung, version 6 header = fints.formals.SegmentHeader('HKTAN', 5, 6), # Segmentkopf tan_process = '4', # TAN-Prozess segment_type = 'HKIDN', #...
Fixes #73
Looking at that horrible hack I wrote in 2018, I think Ronny is right :) There appears to be a different, not as hackish, hack available: https://stackoverflow.com/questions/50473951/how-can-i-attach-documentation-to-members-of-a-python-enum/50473952#50473952 This would be...