Metadata-Version: 2.1
Name: easyscrape_amazonsuggest
Version: 0.1.2
Summary: Easy web scraping for Amazon search bar suggested terms
Home-page: https://github.com/amazingjoe/easyscrape-amazonsuggest
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-AmazonSuggest

Scrape Amazon Searchbar Suggested Terms

<img src="https://github.com/amazingjoe/amazingjoe.github.io/blob/main/imgs/Easyscrape.png" width="50%"/>

## Instructions

1. Install:

```
pip install easyscrape-amazonsuggest
```

2. Get Amazon Suggestions for a Search Term:

```python
from easyscrape_amazonsuggest import querysuggestions as AS

# Request suggestions for a search term
ASResults = AS.query("Monty Python")
ASResults

['monty python shirt', 'monty python and the holy grail', 'monty python', 'monty python blu ray', 'monty python gifts', 'monty python and the holy grail merchandise', 'monty python flying circus complete series', 'monty python dvd', 'monty python door mat', 'monty python fluxx']
```

3. AS.query returns a list of strings with the results.
