15 February, 2020
Did you know that you can use curl to return a CSV of every one who’s in space right now?
Try it yourself (requires jq)
$ curl -s http://api.open-notify.org/astros.json | \
jq -r ".people[] | [.name, .craft] | @csv"
sources:
https://samstarling.co.uk/til/2018/02/json-to-csv-with-jq/ \