ofxtools icon indicating copy to clipboard operation
ofxtools copied to clipboard

Python OFX Library

Results 14 ofxtools issues
Sort by recently updated
recently updated
newest added

When attempting to import and convert the attached ofx file using ```python parser = OFXTree() with open("./test1.ofx", "rb") as fh: parser.parse(fh) parser.convert() ``` I get the following error ```python OFXSpecError('OFX(signonmsgsrqv1=None,...

I've had Vanguard downloads working for years now, but they recently broke with ofxtools. Vanguard is returning an empty response (like, 0 bytes), hence https://github.com/csingley/ofxtools/issues/157. Interestingly, they still work with...

Though not directly related to the code in this repo, this is the best place I could think of for asking this question: banks and institutions seem to be moving...

An acctinfo request to Wells Fargo doesn't return the same bankid for all acctid's. I can work around this by making a separate oxfget call for accounts with the same...

Seems to go off the air while parsing the FI. in the request. As fidelity and wells return profiles, I suspect the '&' in the name is the problem.

When using requests, content type is sent as "Content-type" while urllib sends "Content-Type". Per https://datatracker.ietf.org/doc/html/rfc7231#section-3.1.1.5, the latter is correct. This evidently breaks amex starting a couple days ago.

I've seen ofxtools hang a few times (with different financial institutions), and when I Ctrl-C it, it is in the following loop: https://github.com/csingley/ofxtools/blob/8455c43a59f3ed17b72862ca6021240f33b099cd/ofxtools/header.py#L265 This behavior seems to be transient (the...

When I run it through my own calls to ofxtools, the last log message is "ofxtools.header:Parsing OFX header". Eventually it times out after about 3 minutes (I'm calling setdefaulttimeout(60)). It's...

I have a use case that requires two sets of books (personal and business) that I like to keep separate. In order to do this I wanted to be able...

On my mac, find does not know about -regex flag. I am proposing the following change to find find . -name '*\.pyc' -exec rm '{}' \; find . -name '.*~'...