SearchGooglePy

SearchGooglePy is a simple (un-official) Google Search API under python.

This page will help you to install and use

Install

To install SearchGooglePy follow the steps behavior:

Windows:

pip install SearchGooglePy
Copied !

Linux / MacOS:

python3 -m pip install SearchGooglePy
Copied !

Use

A quick piece of code to get a quick start:

import searchgpy

google_search_engine = searchgpy.GoogleSearchEngine()
google_search_engine.search_text('Hello World !')
Copied !

This piece of code will search on google the sentence : Hello World !. Take a look at the Table of Content for more content !

Table Of Content

Name Description
SearchGooglePy

The SuperClass that initialize the module.

search_text

The search_text function is the function that is used to search on Google's (www.google.com) web-engine.

search_img

The search_img function has the role to search images on Google's (www.google.com) web-engine.

search_news

The search_news function has the role to search news on Google's (www.google.com) web-engine.

search_shop

The search_shop function has the role to search products on Google's (www.google.com) web-engine.

SearchGooglePy Copyright (c) Boubajoker 2022. All right reserved.
Project under MIT License.