├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── T_AND_C.md ├── gsearch ├── __init__.py ├── data.py └── googlesearch.py ├── requirements.txt ├── setup.py └── tests ├── __init__.py └── tests.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/python-gsearch/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/python-gsearch/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/python-gsearch/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/python-gsearch/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/python-gsearch/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/python-gsearch/HEAD/README.md -------------------------------------------------------------------------------- /T_AND_C.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/python-gsearch/HEAD/T_AND_C.md -------------------------------------------------------------------------------- /gsearch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gsearch/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/python-gsearch/HEAD/gsearch/data.py -------------------------------------------------------------------------------- /gsearch/googlesearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/python-gsearch/HEAD/gsearch/googlesearch.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/python-gsearch/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aviaryan/python-gsearch/HEAD/tests/tests.py --------------------------------------------------------------------------------