Skip to content

Instantly share code, notes, and snippets.

@armanbilge
Created January 14, 2014 18:49
Show Gist options
  • Save armanbilge/8423579 to your computer and use it in GitHub Desktop.
Save armanbilge/8423579 to your computer and use it in GitHub Desktop.
Python one-liner extracting names and emails from Google Contacts CSV export.
import sys; print '\n'.join([l.split(',')[0] + '\t' + l.split(',')[-5] for l in open(sys.argv[1])]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment