Metadata-Version: 1.1
Name: google-search-cli
Version: 0.0.5
Summary: google search cli
Home-page: https://github.com/zweifisch/google-search-cli
Author: Feng Zhou
Author-email: zf.pascal@gmail.com
License: MIT
Description: # google-search-cli
        
        * works like a shell
        * changing keywords without quiting
        * socks proxy support
        * does not handle urls(leave it to termial emulator)
        
        ## setup
        
        ```sh
        pip install google-search-cli
        ```
        
        ## usage
        
        ```sh
        google-search keyword keyword2
        ```
        
        using socks5 proxy, `http_proxy` should also work
        
        ```sh
        SOCKS_SERVER=127.0.0.1:9090 google-search
        ```
        
        ## the google api
        
        ```sh
        curl -Gs \
        	-d v=1.0 \
        	-d start=0 \
        	-d rsz=3 \
        	--data-urlencode q=keyword \
        	http://ajax.googleapis.com/ajax/services/search/web
        ```
        
Keywords: google search cli
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.4
