-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Schwab conversion no longer working #77
Comments
About to update this program for new Python versions. Please update if the issue persists. |
Also, what will help is if you can identify what differs between the files that work and the ones that don't. |
If you are still having issues, add an example csv file to the issue. |
A minimum working example below
from operator import itemgetter
mapping = {
"has_header": True,
"bank": "Schwab",
"account": "Brokerage",
"date": itemgetter("Date"),
"amount": itemgetter("Amount"),
"desc": itemgetter("Description"),
}
DATA:OFXSGML
ENCODING:UTF-8
<OFX>
<SIGNONMSGSRSV1>
<SONRS>
... |
CR #32 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I started working on a Schwab mapping but I'm not getting a lot of progress. I also managed to crash
csv2ofx
in the middle of the file and I'm not sure what caused it. Here is how far I got.The CSV file that you get from a Schwab Brokerage account looks like this:
Right of the bat I need to:
Regarding the mapping itself, this is what I have so far:
The comment lines still need some sort of mapping.
I ran this and it went fine for more than one year of transactions but it crashed suddenly. Here is the error:
And here is the current and after line in the CSV:
I'm not sure what is the issue here.
The text was updated successfully, but these errors were encountered: