Petri Savolainen
Petri Savolainen
What should it be, and why?
We cannot fix this if we don't know what the result should be. Would you at least know in which country this "AMBA" is in?
Sounds good to me. Do you think you'd later accept a pull request providing the command-line option?
Sorry- just automatically thought I was responding to Andrey. A contrib is a good start; however I think a command-line option would be useful.
Ah thanks I will take a look at ofxdump. Too bad there's no OSX version. Initial use case is debug yes; however I plan to add a bit nicer HTML...
The bash script I posted in issue #16 does that using xsltproc, invoked thus: ``` bash xsltproc transformer.xslt infile.ofx > outfile.html ``` Or do you mean a Python script?
Here's how to invoke the transform from Python, using lxml: ``` python from contextlib import contextmanager from lxml import etree @contextmanager def xml(filename): with open(filename) as xmlfile: yield etree.XML(xmlfile.read()) with...
I think for storing HTML I will run the parser(s) directly, as my use case requires access to the original transaction types, before they are mapped to types accepted by...
Unfortunately, the bank here does not provide CSV exports for an arbitrary larger period; the CSV always comes in batches (of one full month, from first of month to last)....
Thanks for your suggestions. There have been a number of variations in the CSV files through the years, so preprocessing CSVs would repeat much of what's in the plugins already....