Skip to content

Instantly share code, notes, and snippets.

@topicus
Created January 23, 2013 18:53
Show Gist options
  • Save topicus/4611549 to your computer and use it in GitHub Desktop.
Save topicus/4611549 to your computer and use it in GitHub Desktop.
Remover acentos de un string en python
def strip_accents(s):
return ''.join((c for c in unicodedata.normalize('NFD', s) if unicodedata.category(c) != 'Mn'))
strip_accents(input_str.decode('utf-8'))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment