Skip to content

Commit d3d8a1d

Browse files
committed
A tiny but useful script that fires off a search on Google.
(Not sure if this is legal according to the Google terms of service. :-)
1 parent b6b6c6c commit d3d8a1d

1 file changed

Lines changed: 22 additions & 0 deletions

File tree

Tools/scripts/google.py

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
#! /usr/bin/env python
2+
3+
import sys, webbrowser
4+
5+
def main():
6+
args = sys.argv[1:]
7+
if not args:
8+
print "Usage: %s querystring" % sys.argv[0]
9+
return
10+
list = []
11+
for arg in args:
12+
if '+' in arg:
13+
arg = arg.replace('+', '%2B')
14+
if ' ' in arg:
15+
arg = '"%s"' % arg
16+
arg = arg.replace(' ', '+')
17+
list.append(arg)
18+
s = '+'.join(list)
19+
url = "http://google.com/search?q=%s" % s
20+
webbrowser.open(url)
21+
22+
main()

0 commit comments

Comments
 (0)