View on GitHub

OxfordCSV

Oxfordize your CSV files

download .ZIPdownload .TGZ

oxfordcsv

About

Why use plain old CSV when you can use Oxford CSV?

New data format: The Oxford CSV. Each line is comma delimited until the last two items, which are "and" delimited.

— Zack Johnson (@zapjackson) November 8, 2014

Usage

To use oxfordcsv, simple pipe CSV data into it: python3 oxfordcsv.py < infile.csv

$ cat sample.csv
id,name,address,city,state
1,Alice,213 Elk St.,New York,NY
2,Bob,84924 1st Ave.,Boulder,CO
3,Cheryl,99376 Apple Pkwy. Apt. #1632,Los Angeles,CA
4,Dean,153 8th St. So.,Houston,TX
$ python3 oxfordcsv.py < sample.csv > oxford.csv
$ cat oxford.csv
id,name,address,city,and state
1,Alice,213 Elk St.,New York,and NY
2,Bob,84924 1st Ave.,Boulder,and CO
3,Cheryl,99376 Apple Pkwy. Apt. #1632,Los Angeles,and CA
4,Dean,153 8th St. So.,Houston,and TX
$

For those of you who want stricter adherence to the rules of the English language, the -E argument will cause a space to be added between the comma and the and:

$ python3 oxfordcsv.py -E < sample.csv
id,name,address,city, and state
1,Alice,213 Elk St.,New York, and NY
2,Bob,84924 1st Ave.,Boulder, and CO
3,Cheryl,99376 Apple Pkwy. Apt. #1632,Los Angeles, and CA
4,Dean,153 8th St. So.,Houston, and TX

License

MIT