-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
14 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,17 @@ | ||
# camt.053-to-CSV | ||
Converts a "Bank to Customer (B2C) Statement" in ISO 20022 camt.053.001.04 XML format into a CSV File - e.g. for Excel analysis. In Python. | ||
Converts a "Bank to Customer (B2C) Statement" in ISO 20022 camt.053.001.04 XML format into a CSV File - e.g. for Excel analysis. Python script and XSL file. More a python/XML training project for me than anything else :-) | ||
|
||
Convert camt.053 to CSV.py - python script | ||
Files | ||
----- | ||
"Convert camt.053 to CSV.py" : python script (works without the XSL) | ||
|
||
camt.053.xsl - XSL file to produce an HTML table (requires an xslt processor) | ||
"camt.053.xsl" - XSL file. Using a camt.053 XML and this XSL file as input, an "XSLT processor" will render a table with bookings in HTML. The "XSLT processor" can be a webbrowser, a python script using the saxonche library etc. | ||
|
||
https://github.com/AMTQ/iso_camt053_to_df seems to be similar to this.. | ||
See also | ||
-------- | ||
https://github.com/AMTQ/iso_camt053_to_df seems to be a far more sophisticated solution to camt.053 processing. | ||
https://www.w3schools.com/xml/xsl_transformation.asp | ||
|
||
camt.053 Specs | ||
https://www.swift.com/swift_resource/35371 | ||
https://www.swift.com/search?keywords=camt.053&search-origin=onsite_search | ||
https://www.ebics.de/de/datenformate |