Skip to content

Instantly share code, notes, and snippets.

@drinks
Created July 23, 2012 19:07
Show Gist options
  • Save drinks/3165482 to your computer and use it in GitHub Desktop.
Save drinks/3165482 to your computer and use it in GitHub Desktop.
unicode unaccenting!
import unicodedata
unicodedata.normalize('NFKD', u'Menéndez').encode('ascii', 'ignore')
#>'Menendez'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment