Skip to content

Instantly share code, notes, and snippets.

@keevee09
Forked from j4mie/normalise.py
Created April 2, 2016 00:51
Show Gist options
  • Save keevee09/8360dc17967d9b502402861cd4f66eb6 to your computer and use it in GitHub Desktop.
Save keevee09/8360dc17967d9b502402861cd4f66eb6 to your computer and use it in GitHub Desktop.
Normalise (normalize) unicode data in Python to remove umlauts, accents etc.
# -*- coding: utf-8 -*-
import unicodedata
""" Normalise (normalize) unicode data in Python to remove umlauts, accents etc. """
data = u'naïve café'
normal = unicodedata.normalize('NFKD', data).encode('ASCII', 'ignore')
print normal
# prints "naive cafe"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment