Skip to content

Instantly share code, notes, and snippets.

View ninijay's full-sized avatar
🏠
Working from home

Zanidd ninijay

🏠
Working from home
View GitHub Profile
@ninijay
ninijay / normalize-text.py
Last active September 20, 2016 16:34
null created by ninijay - https://repl.it/Ddju/0
import unicodedata
data = u'Zürich'
normal = unicodedata.normalize('NFKD', data).encode('ASCII', 'ignore')
print(normal)