Skip to content

Instantly share code, notes, and snippets.

@dblume
dblume / convert_qfx_to_csv.py
Last active November 13, 2025 18:46
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