Skip to content

Instantly share code, notes, and snippets.

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