Skip to content

Instantly share code, notes, and snippets.

@YannBrrd
Last active August 29, 2015 14:04
Show Gist options
  • Save YannBrrd/f428cac038896de7b6b9 to your computer and use it in GitHub Desktop.
Save YannBrrd/f428cac038896de7b6b9 to your computer and use it in GitHub Desktop.
LowerCaseNormalize for python
def remove_accents(input_str):
nkfd_form = unicodedata.normalize('NFKD', unicode(input_str.lower()))
return u"".join([c for c in nkfd_form if not unicodedata.combining(c)])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment