Skip to content

Instantly share code, notes, and snippets.

@mrkschan
Created August 21, 2012 07:13
Show Gist options
  • Save mrkschan/3413010 to your computer and use it in GitHub Desktop.
Save mrkschan/3413010 to your computer and use it in GitHub Desktop.
a shortcut program to decode URL
#!/usr/bin/env python
# Usage: urldecode.py url
import urllib
import sys
print urllib.unquote_plus(sys.argv[1])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment