-
Notifications
You must be signed in to change notification settings - Fork 62
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
Multiple ofx from one statement #47
Comments
I would also like this for generating different OFX files for the escrow and loan accounts for house mortgages. |
Any opinions, updates on this? I'm also interested in this, since Revolut produces statements for multiple accounts in a single CSV per currency. |
The typical approach here is to process such input file multiple times with different settings. E.g. I have in my [swedbank-eur]
plugin = swedbank
currency = EUR
[swedbank-usd]
plugin = swedbank
currency = USD My bank generates a single statement with multiple currencies, but Technically, the plugin would only take records with configured currency from the statement and ignore all others. |
That could also work, yes. |
Hi,
i am working on a paypal plugin, which supports multiple currencies. in order to do this, I would like to generate multiple OFX files for each currency that is used in the paypal csv.
The easiest way to implement it that I can think of is to allow
p.get_parser(args.input)
to return a list:
[{'parser' : parserUSD, 'account' : 'USD'}, {'parser' : parserEUR, 'account' : 'EUR'}]
convert can then use that to generate multiple OFX files.
What do you think?
Kim
The text was updated successfully, but these errors were encountered: