Skip to content

Instantly share code, notes, and snippets.

@anielsen001
anielsen001 / ofx-to-ledger.py
Created October 20, 2018 11:58 — forked from code-affinity/ofx-to-ledger.py
Python script for importing OFX files into a ledger-cli file
from __future__ import print_function
from ofxparse import OfxParser
import os
import re
import sys
if len(sys.argv) != 1:
print ('This utility does not take command-line arguments')
exit()