Skip to content

Instantly share code, notes, and snippets.

@dankkom
Created June 3, 2019 13:10
Show Gist options
  • Save dankkom/4a711f0f5b4538e3a1baf2045229ab42 to your computer and use it in GitHub Desktop.
Save dankkom/4a711f0f5b4538e3a1baf2045229ab42 to your computer and use it in GitHub Desktop.
import unicodedata
def strip_accents(s):
return ''.join(c for c in unicodedata.normalize('NFD', s)
if unicodedata.category(c) != 'Mn')
@dankkom
Copy link
Author

dankkom commented Jun 3, 2019

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment