Skip to content

Instantly share code, notes, and snippets.

@codyjroberts
Created November 30, 2016 00:56
Show Gist options
  • Save codyjroberts/c079f31a8139a01712b5b50476d2e554 to your computer and use it in GitHub Desktop.
Save codyjroberts/c079f31a8139a01712b5b50476d2e554 to your computer and use it in GitHub Desktop.
import sys
import csv
import json
reader = csv.DictReader(sys.stdin, fieldnames=sys.argv[1:])
print json.dumps( [ row for row in reader ] )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment