Skip to content

Instantly share code, notes, and snippets.

@georgewhewell
Created October 11, 2013 13:25
Show Gist options
  • Save georgewhewell/6934630 to your computer and use it in GitHub Desktop.
Save georgewhewell/6934630 to your computer and use it in GitHub Desktop.
import csv
import json
with open('names_en-uk.csv') as csvfile:
reader = csv.reader(csvfile)
print json.dumps(set([row.pop() for row in reader]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment