Closed brukeg closed 1 year ago
Starting work on this. Will be pursuing .ofx instead of .csv as it seems to have standardized column names that will make parsing a bit easier than .csv.
I found this python library that seems to work quite well: https://github.com/jseutter/ofxparse.
from ofxparse import OfxParser
with open('File.qfx') as f:
ofx = OfxParser.parse(f)
account = ofx.account
print(f'this is my routing number: {account.routing_number}')
Out:
this is my routing number: 325070760
Research is done. This should be better than CSV and good enough for now. I'll start on writing up the design plan for the upload transaction api
We need to be able to upload real transactions from either a bank statement, csv, or some other standardized file format.
To Do: Figure out how...