ofxparse
ofxparse copied to clipboard
Ofx file format parser for Python
Hi everybody, Excerpt from my bank (LCL.FR) statement. Please notice the TRNTYPE value: CHECK 20190221 -19.87 003 1090381 1090381 I believe this kind of transaction is not handled correctly because...
My bank OFX files start with empty lines, this PR fixes parsing of those files.
Fix parsing for QFX files exported from the Chase website which seem to have some quirks around the header format. Specifically, the headers begin with an empty line and there...
`transaction.security` and `position.security` currently are only assigned as `str` of CUSIP number, instead it should be a `Security()` object, so that more useful ticker symbol can also be obtained. I...
I downloaded some transactions from my bank using ofxget to a file. I I tried to parse the file with OfxParser.parse and got this: `Traceback (most recent call last): File...
The readme file does not show attributes of transactions. The transaction.payee thing is confusing for users because it is the "name" field in the ofx file. At least document it...
Hello, I'm trying to persiste some modifications on FITID, but when I open the file (*.ofx) nothing happens. This my code: ``` import ofxparse import datetime as dt with open('/home/jovani/Downloads/ofx.ofx')...
My bank gives me qfx files with this header: OFXHEADER:100 DATA:OFXSGML VERSION:102 SECURITY:TYPE1 ENCODING:USASCII CHARSET:8859-1 COMPRESSION:NONE OLDFILEUID:NONE NEWFILEUID:NONE ofxparse try to parse it as cp8859-1 (instead of iso-8859-1).
I'm encountering an issue when attempting to utilize the ofxprinter write function. The error info is below: Traceback (most recent call last): File "ofx_parse.py", line 32, in printer.write(tabs=0) File "/Users/adam/miniconda3/lib/python3.6/site-packages/ofxparse/ofxprinter.py",...
My bank exports files with empty tags here and there, for example: <FI><ORG/><FID/></FI> The empty tag syntax is valid XML but the parser doesn't like it. I can remove empty...