Skip to content

Instantly share code, notes, and snippets.

@tweinreich
Created August 28, 2021 16:31
Show Gist options
  • Save tweinreich/b30db01334cf0a4ed688b8765aeb751b to your computer and use it in GitHub Desktop.
Save tweinreich/b30db01334cf0a4ed688b8765aeb751b to your computer and use it in GitHub Desktop.
CSV-CAMT to JSON
cat file.CSV | python -c 'import csv, json, sys; f = open("out.json", "x"); f.write(json.dumps([dict(r) for r in csv.DictReader(sys.stdin, delimiter=";")])); f.close()'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment