python-sepaxml icon indicating copy to clipboard operation
python-sepaxml copied to clipboard

SEPA Direct Debit XML generation in python

Results 22 python-sepaxml issues
Sort by recently updated
recently updated
newest added

Hi there! Using the SepaDD as follows: ``` ## Config file config = { "name": "name", "IBAN": "AD121111111111111111111", "creditor_id": "AD121111111111111111111", # TODO update - supplied by your bank or financial...

International transfers to some countries need country and postal address fields (Switzerland at least it seems, others like Danske bank mark this field as optional). These are currently not supported:...

enhancement
help wanted

The example from the readme proposed tu use a UUID1 as end-to-end reference. However, the string representation of a UUID1 is 36 characters, while SEPA allows only 35 characters in...

What is the primary obstacle to increasing the set of supported SEPA PAIN versions? For example https://github.com/raphaelm/python-fints/blob/18e361ab2c5beeddf126a601bfcc7753cf84efec/fints/client.py#L732 may choose `pain.001.003.03` which I guess worked before schema validation was introduced, but...

Hello! Some bank offers multi currency accounts, when under the same account number you have separate accounts for different currencies. Such banks expect to receive `` in ``: ``` CZ7855000000005001264780...

Only rely on `datetime` to generate timestamps, and not `time` *and* `datetime`. This makes it easier for downstream projects to freeze time and get reproducible timestamps. `freezegun` is a nice...

String-ified timestamps are generated in two different ways in the library: 1. `sepaxml.utils.make_msg_id` relies on the `time` module to generate the timestamp part of the message ID 2. `sepaxml.debit._create_header` and...

Hello, I would like to have compatibility with the [CBI](https://it.wikipedia.org/wiki/Corporate_Banking_Interbancario) standard, which is derived from the ISO20022 pain.001.001.03 These are some useful files and links: [STIP-ST-001 Credit Transfer CBI v.00.04.00.xls](https://github.com/raphaelm/python-sepaxml/files/6416696/STIP-ST-001.Credit.Transfer.CBI.v.00.04.00.xls)...

I had to do the following modifications to make it compatible with Sparkasse: ```python xml = re.sub(r'.+', 'NOTPROVIDED', xml) xml = re.sub(r'.+[\S\n ]+?\n', '', xml) xml = re.sub(r'.+[\S\n ]+?\n', '',...

Hi, please provide a hyperlink in the README where I can find more information about the types (FRST,RCUR,OOFF,FNAL). Thank you