Skip to content

Instantly share code, notes, and snippets.

View ABlueWhale's full-sized avatar
😊

Benjamin ABlueWhale

😊
  • Internet
View GitHub Profile
@ABlueWhale
ABlueWhale / convert_qfx_to_csv.py
Created November 13, 2025 18:46 — forked from dblume/convert_qfx_to_csv.py
Convert Wealthfront's exported Quicken QFX format to CSV
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Converts Wealthfront's exported QFX to CSV.
# Thanks @egill512
# https://gist.github.com/whistler/e7c21c70d1cbb9c4b15d?permalink_comment_id=3296132#gistcomment-3296132
from csv import DictWriter
from glob import glob
import ofxparse