Skip to content

Instantly share code, notes, and snippets.

View bgachenot's full-sized avatar
🏠
Working from home

Brandon Gachenot bgachenot

🏠
Working from home
View GitHub Profile
@bgachenot
bgachenot / probit-converter.py
Last active February 11, 2021 10:59
A small Python utility to convert from Probit CSV format to cointracker CSV format
#!/usr/bin/env python3
import sys
from datetime import datetime
def main():
try:
csv_file = open(sys.argv[1], 'r')
except FileNotFoundError:
print("File not found. Exiting now...")