Skip to content

Instantly share code, notes, and snippets.

@BigW72
Created November 16, 2023 23:47
Show Gist options
  • Save BigW72/1575ff7254049f0bee87f2bf545e7090 to your computer and use it in GitHub Desktop.
Save BigW72/1575ff7254049f0bee87f2bf545e7090 to your computer and use it in GitHub Desktop.
CSV to JSON Python one liner
# https://stackoverflow.com/questions/44780761/converting-csv-to-json-in-bash
cat my.csv | python -c 'import csv, json, sys; print(json.dumps([dict(r) for r in csv.DictReader(sys.stdin)]))'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment