Skip to content

Instantly share code, notes, and snippets.

@tweinreich
tweinreich / csv-camt-to-json.md
Created August 28, 2021 16:31
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()'