Skip to content

Instantly share code, notes, and snippets.

View cgbarros's full-sized avatar

Caio Barros cgbarros

View GitHub Profile
@cgbarros
cgbarros / ofx2csv.py
Last active November 12, 2023 21:15 — 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
from ofxparse import OfxParser
import json
import urllib.request
import datetime
import argparse