Skip to content

Instantly share code, notes, and snippets.

@mvmthecreator
Forked from j4mie/normalise.py
Created April 5, 2018 01:17
Show Gist options
  • Save mvmthecreator/93d37c88680ee955d3b746179eb1020c to your computer and use it in GitHub Desktop.
Save mvmthecreator/93d37c88680ee955d3b746179eb1020c 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