Skip to content

Instantly share code, notes, and snippets.

View abirchall's full-sized avatar

Andrew Birchall abirchall

View GitHub Profile
@abirchall
abirchall / ofx2csv.py
Last active September 11, 2023 22:25 — forked from whistler/ofx2csv.py
Convert QFX/OFX to CSV
#!/usr/bin/env python3
"""
Parse .qfx or .ofx files and output as .json or .csv format.
"""
from typing import Dict, List, Optional
import argparse
import math