jseutter / ofxparse

Ofx file format parser for Python
http://sites.google.com/site/ofxparse/
MIT License
204 stars 121 forks source link

Does this parse ofx 1.0 format? #166

Open ibigbug opened 2 years ago

ibigbug commented 2 years ago

http://xml.coverpages.org/OFEXFIN1.html

https://www.exactsoftware.com/docs/DocView.aspx?DocumentID=%7B6e02f9a5-ee40-4d2f-b8ea-4bee57825907%7D

Citi Australia is giving the odd 1.0 OFX and it failed to parse with:

In [1]: from ofxparse import OfxParser

In [2]: import codecs

In [3]: with codecs.open('MC_329_01_03_2022.OFX') as fd:
   ...:     ofx = OfxParser.parse(fd)
   ...: