source: python/vendor/Python-2.6.5/Tools/scripts/google.py

Last change on this file was 2, checked in by Yuri Dario, 15 years ago

Initial import for vendor code.

  • Property svn:eol-style set to native
File size: 520 bytes
Line 
1#! /usr/bin/env python
2
3import sys, webbrowser
4
5def 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://www.google.com/search?q=%s" % s
20 webbrowser.open(url)
21
22if __name__ == '__main__':
23 main()
Note: See TracBrowser for help on using the repository browser.