From 7ca78b8a8fb8db2fb4d876dc9764097ede776610 Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Wed, 14 Sep 2016 10:59:27 +0300 Subject: Issue #26830: Refactor Tools/scripts/google.py Patch by Francisco Couzo. --- Tools/scripts/google.py | 32 +++++++++++++++++--------------- 1 file changed, 17 insertions(+), 15 deletions(-) (limited to 'Tools/scripts/google.py') diff --git a/Tools/scripts/google.py b/Tools/scripts/google.py index 12152bb5f8..82fb287188 100755 --- a/Tools/scripts/google.py +++ b/Tools/scripts/google.py @@ -1,23 +1,25 @@ #! /usr/bin/env python3 -import sys, webbrowser +"""Script to search with Google -def main(): - args = sys.argv[1:] - if not args: - print("Usage: %s querystring" % sys.argv[0]) - return - list = [] - for arg in args: - if '+' in arg: - arg = arg.replace('+', '%2B') +Usage: + python3 google.py [search terms] +""" + +import sys +import urllib.parse +import webbrowser + + +def main(args): + def quote(arg): if ' ' in arg: arg = '"%s"' % arg - arg = arg.replace(' ', '+') - list.append(arg) - s = '+'.join(list) - url = "http://www.google.com/search?q=%s" % s + return urllib.parse.quote_plus(arg) + + qstring = '+'.join(quote(arg) for arg in args) + url = urllib.parse.urljoin('https://www.google.com/search', '?q=' + qstring) webbrowser.open(url) if __name__ == '__main__': - main() + main(sys.argv[1:]) -- cgit v1.2.1