Hello
Diango have any build-in method to decode that url?
>>> from django.utils.http import urlquote_plus
>>> url = urlquote_plus('zażółć gęśłą jaźń')
>>> print url
za%C5%BC%C3%B3%C5%82%C4%87+g%C4%99%C5%9B%C5%82%C4%85+ja%C5%BA%C5%84

or this is the best way?
from urllib import unquote_plus
>>> print unicode(unquote_plus(str(url)), 'utf-8')
zażółć gęśłą jaźń

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to