Skip to content

Latest commit

 

History

History
49 lines (34 loc) · 753 Bytes

README.md

File metadata and controls

49 lines (34 loc) · 753 Bytes

ofx2csv

Python script that converts .ofx and .qfx files to .csv

Running

  1. Have Python 3 installed

  2. Install dependencies

    python3 -m venv .venv
    source .venv/bin/activate
    python3 -m pip install -r requirements.txt
  3. Put the ofx files in the same folder as ofx2csv.py

  4. Do

    python ofx2csv.py

Options

JSON Output

It defaults to csv. You can also request JSON.

python ofx2csv.py -o json

Specify a file

It defaults to *.ofx; you can specify a file if you want:

python ofx2csv.py -i foo.qfx

Or two files:

python ofx2csv.py -i foo.qfx bar.qfx

You can also include wildcards:

python ofx2csv.py -i 2024-*.qfx bar.qfx