Metadata-Version: 2.1
Name: easyscrape_googlesuggest
Version: 0.1.2
Summary: Easy web scraping wrapper for Google Suggest results
Home-page: https://github.com/amazingjoe/EasyScrape-GoogleSuggest
Author: Joseph Ucuzoglu
Author-email: baldmancodes@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# EasyScrape-GoogleSuggest

Scrape Google Auto Suggest Results

## Instructions

1. Install:

```
pip install easyscrape-googlesuggest
```

2. Get Google Suggestions for a Search Term:

```python
from easyscrape_googlesuggest import getsuggestions as ES

# Request suggestions for a search term
ESResults = ES.query("Mony Python")
ESResults

['monty python and the holy grail', 'monty python movies', 'monty python cast', 'monty python life of brian', 'monty python and the holy grail quotes', "monty python's flying circus", 'monty python rabbit', 'monty python quotes']
```

3. ES_query returns a list of strings with the results. You can optionally set the requests header as the second argument if you wish to include a custom header.
