In Spain, all banks has an unified file format to supply statements of account, this format is known as Norma43. The first version of the format was released May 1982 and it's quite simple to parse. Almost all bank's web supplies Norma43 files with your account info. If you want to process this info, inserted in a database or whatever software treatment, this file can be very helpful. I've implemented a python class that parses this file format and fill in an array with all the registers in the file and its field values.
- Here you can find the Norma43 file format description
- Here you can find the Norma43 python parser.