Skip to content

Instantly share code, notes, and snippets.

View egill512's full-sized avatar

Ethan Gill egill512

View GitHub Profile
@egill512
egill512 / ofx2csv.py
Last active May 8, 2020 16:18 — forked from whistler/ofx2csv.py
Convert QFX/OFX to CSV
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
from csv import DictWriter
from glob import glob
import ofxparse
import csv
DATE_FORMAT = "%m/%d/%Y"