Skip to content

Instantly share code, notes, and snippets.

@micaleel
Forked from j4mie/normalise.py
Created July 21, 2014 13:45
Show Gist options
  • Save micaleel/b38c6125a14ed54376de to your computer and use it in GitHub Desktop.
Save micaleel/b38c6125a14ed54376de to your computer and use it in GitHub Desktop.
# -*- 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