Skip to content

Instantly share code, notes, and snippets.

@rochoa
Created December 16, 2014 11:48
Show Gist options
  • Save rochoa/25a70af1a60eb7a99267 to your computer and use it in GitHub Desktop.
Save rochoa/25a70af1a60eb7a99267 to your computer and use it in GitHub Desktop.
urldecode from stdin
#!/usr/bin/python
import sys
import urllib
print urllib.unquote_plus(sys.stdin.read())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment