Skip to content

Instantly share code, notes, and snippets.

@mccutchen
Created October 13, 2014 15:22
Show Gist options
  • Select an option

  • Save mccutchen/c75982b46e0f3910f4c0 to your computer and use it in GitHub Desktop.

Select an option

Save mccutchen/c75982b46e0f3910f4c0 to your computer and use it in GitHub Desktop.
>>> import urllib
>>> url = 'http://www.newyorker.com/magazine/2014/10/13/cooka%C2%80%C2%99s-tale'
>>> urllib.unquote(url)
'http://www.newyorker.com/magazine/2014/10/13/cooka\xc2\x80\xc2\x99s-tale'
>>> print _
http://www.newyorker.com/magazine/2014/10/13/cooka€™s-tale
>>> urllib.unquote(url).decode('utf8')
u'http://www.newyorker.com/magazine/2014/10/13/cooka\x80\x99s-tale'
>>> print _
http://www.newyorker.com/magazine/2014/10/13/cooka€™s-tale
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment