slugify.py 298 B

1234567891011
  1. import django.template.defaultfilters
  2. try:
  3. from unidecode import unidecode
  4. use_unidecode = True
  5. except ImportError:
  6. use_unidecode = False
  7. def slugify(string):
  8. if use_unidecode:
  9. string = unidecode(string)
  10. return django.template.defaultfilters.slugify(string)