Metadata-Version: 2.1
Name: easyscrape_googlesuggest
Version: 0.1.0
Summary: Easy web scraping wrapper for Google Suggest results
Home-page: https://github.com/jamescalam/aesthetic_ascii
Author: Joseph Ucuzoglu
Author-email: baldmancodes@gmail.com
License: UNKNOWN
Platform: UNKNOWN
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

# Request suggestions for a search term
ESResults = getsuggestions.ES_query("Mony Python")
```

3. ES_query returns a list of strings with the results.


