Sinisterly
Small command line google search [python] - Printable Version

+- Sinisterly (https://sinister.li)
+-- Forum: Coding (https://sinister.li/Forum-Coding)
+--- Forum: Coding (https://sinister.li/Forum-Coding--71)
+--- Thread: Small command line google search [python] (/Thread-Small-command-line-google-search-python)



Small command line google search [python] - TheShadow1 - 04-12-2012

Code:
from sys import argv script, query = argv #You will need this module: http://googolplex.sourceforge.net/ from google import search for url in search('(%r)' % query, stop=20): print(url)

use this:
Code:
$ python program.py "asdasdkljasd"



Small command line google search [python] - TheShadow1 - 04-12-2012

Code:
from sys import argv script, query = argv #You will need this module: http://googolplex.sourceforge.net/ from google import search for url in search('(%r)' % query, stop=20): print(url)

use this:
Code:
$ python program.py "asdasdkljasd"