Skip to content

Instantly share code, notes, and snippets.

View mgronhol's full-sized avatar

Markus Grönholm mgronhol

View GitHub Profile
@mgronhol
mgronhol / csv_org.py
Created September 6, 2012 11:21 — forked from kauppim/csv_org.py
Pythonized version of kauppim's code
#!/usr/bin/env python
import sys, csv
# Checking for cli parametres
if len( sys.argv ) < 4:
print "Usage: %s input.csv column-label output.csv"%( sys.argv[0] )
sys.exit( 1 )