annotate python/pastebin.py @ 760:d0b975ffabdf

http://serverfault.com/questions/132055/how-to-check-if-emacs-is-in-gui-mode-and-execute-tool-bar-mode-only-then
author Jeff Hammel <k0scist@gmail.com>
date Tue, 15 Dec 2015 12:32:34 -0800
parents 6b8573a62cd3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
37
6b8573a62cd3 add a python pastebin script for mozilla (pastebinit strangely doesnt seem to work at all)
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
1 #!/usr/bin/env python
6b8573a62cd3 add a python pastebin script for mozilla (pastebinit strangely doesnt seem to work at all)
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
2
6b8573a62cd3 add a python pastebin script for mozilla (pastebinit strangely doesnt seem to work at all)
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
3 import sys
6b8573a62cd3 add a python pastebin script for mozilla (pastebinit strangely doesnt seem to work at all)
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
4 import urllib2
6b8573a62cd3 add a python pastebin script for mozilla (pastebinit strangely doesnt seem to work at all)
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
5 import urllib
6b8573a62cd3 add a python pastebin script for mozilla (pastebinit strangely doesnt seem to work at all)
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
6 content = sys.stdin.read()
6b8573a62cd3 add a python pastebin script for mozilla (pastebinit strangely doesnt seem to work at all)
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
7 url = 'http://pastebin.com/api_public.php'
6b8573a62cd3 add a python pastebin script for mozilla (pastebinit strangely doesnt seem to work at all)
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
8 data = dict(paste_code=content, paste_subdomain='mozilla')
6b8573a62cd3 add a python pastebin script for mozilla (pastebinit strangely doesnt seem to work at all)
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
9 values = urllib.urlencode(data)
6b8573a62cd3 add a python pastebin script for mozilla (pastebinit strangely doesnt seem to work at all)
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
10 req = urllib2.Request(url, values)
6b8573a62cd3 add a python pastebin script for mozilla (pastebinit strangely doesnt seem to work at all)
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
11 response = urllib2.urlopen(req)
6b8573a62cd3 add a python pastebin script for mozilla (pastebinit strangely doesnt seem to work at all)
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
12 the_page = response.read()
6b8573a62cd3 add a python pastebin script for mozilla (pastebinit strangely doesnt seem to work at all)
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
13
6b8573a62cd3 add a python pastebin script for mozilla (pastebinit strangely doesnt seem to work at all)
Jeff Hammel <k0scist@gmail.com>
parents:
diff changeset
14 print the_page