On Thu, May 29, 2008 at 10:16 AM, John M <[EMAIL PROTECTED]> wrote:

>
> Karen,
>
> Thanks for the response, but I'm unable to unquote the strings as
> django does it automatically for me when I get the GET list entries.
>

Oh right, sigh, Django has already helpfully done the un-qoting and
converted to unicode for the request.GET dictionary.  So, I'd go back to the
raw query string (accessible as request.META['QUERY_STRING']) and use
Python's cgi.parse_qs to do the parsing/unquoting but not the unicode step
-- instead do the hex encoding on what parse_qs returns:

from cgi import parse_qs
hash = parse_qs(request.META['QUERY_STRING'])['info_hash'][0].encode('hex')

Karen

--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to