├── .gitignore ├── .readthedocs.yaml ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── README.md ├── docs ├── .gitignore ├── Makefile ├── conf.py ├── index.rst └── make.bat ├── googlesearch ├── __init__.py └── user_agents.txt.gz ├── requirements.txt ├── scripts └── google ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioVilas/googlesearch/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioVilas/googlesearch/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioVilas/googlesearch/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioVilas/googlesearch/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioVilas/googlesearch/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioVilas/googlesearch/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioVilas/googlesearch/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioVilas/googlesearch/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioVilas/googlesearch/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioVilas/googlesearch/HEAD/docs/make.bat -------------------------------------------------------------------------------- /googlesearch/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioVilas/googlesearch/HEAD/googlesearch/__init__.py -------------------------------------------------------------------------------- /googlesearch/user_agents.txt.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioVilas/googlesearch/HEAD/googlesearch/user_agents.txt.gz -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | beautifulsoup4>=4.0 2 | -------------------------------------------------------------------------------- /scripts/google: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioVilas/googlesearch/HEAD/scripts/google -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [bdist_wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarioVilas/googlesearch/HEAD/setup.py --------------------------------------------------------------------------------