Skip to content

Instantly share code, notes, and snippets.

@andrewsmedina
Created July 13, 2011 17:01
Show Gist options
  • Save andrewsmedina/1080749 to your computer and use it in GitHub Desktop.
Save andrewsmedina/1080749 to your computer and use it in GitHub Desktop.
remove acentos
from unicodedata import normalize
return normalize('NFKD', str.decode('utf-8')).encode('ASCII', 'ignore')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment