Skip to main content

A utility package to interact with google.com

Project description

google-utils

Use google from the convenience of a python script!

Installation

Install from pip:

pip install google-utils

Usage

Fetching links:

from google_utils import Google

results = Google.search("Minecraft")
for result in results:
    print(result.link)

Calculator:

from google_utils import Google

response = Google.calculate("64 to the power of six")
print(f"{response.question}\n{response.answer}")

Weather checking:

from google_utils import Google

response = Google.weather("san francisco in celcius")
print(f"{response.weather} {response.temperature}")

Definition:

from google_utils import Google

response = Google.define("splendid")
print(f"{response.phrase}, {response.type}\n{response.pronunciation}\n{response.meaning}")

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

google-utils-1.0.3.tar.gz (3.5 kB view hashes)

Uploaded Source

Built Distribution

google_utils-1.0.3-py3-none-any.whl (16.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page