Skip to content

Instantly share code, notes, and snippets.

@CyberLight
Forked from renyi/gist:1558477
Last active August 29, 2015 14:13
Show Gist options
  • Save CyberLight/b848224092ad30c3b899 to your computer and use it in GitHub Desktop.
Save CyberLight/b848224092ad30c3b899 to your computer and use it in GitHub Desktop.
import urllib2
def urlencode(s):
return urllib2.quote(s)
def urldecode(s):
return urllib2.unquote(s).decode('utf8')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment