How to slugify unicode string in Django Django15.11.2014
I use unidecode for ASCII transliterations of Unicode text
pip install Unidecode
Example
from unidecode import unidecode
from django.utils.text import slugify
text = 'Тест'
text = unidecode(text.decode('utf8'))
slugify(unicode(text))
# u'test'
Quote
It's supposed to be hard. If it wasn't hard, everyone would do it. The "hard" is what makes it great.