Metadata-Version: 2.1
Name: custom-google-search
Version: 1.0.0
Summary: Performs custom google search programmatically
Home-page: https://github.com/joeyism/py-custom-google-search
Author: joeyism
License: UNKNOWN
Download-URL: https://github.com/joeyism/py-custom-google-search/archive/1.0.0.tar.gz
Keywords: custom,google,search,image,api,program
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests

# py-custom-google-search
This library is to ease with the usage of custom Google Search API. This means that you can use this library to programatically perform Google searches with the API, without the need for scraping (which means that it is much lighter).

## Installation
To install, run
```
pip install custom-google-search
```

## Usage

### Getting CX Number and API Key
Follow [this tutorial](https://joeyism.medium.com/custom-google-search-api-fbbafe4711eb) on how to get your CX Number and API Key

### Programmatically
```python
from custom_google_search import search
search("nike logo", key=API_KEY, cx=CX_NUMBER)
```

where `API_KEY` and `CX_NUMBER` are the API Key and CX Number respectively.


