easyscrape-ebaysuggest

Easy web scraping for Ebay search bar suggested terms


License
MIT
Install
pip install easyscrape-ebaysuggest==0.1.2

Documentation

easyscrape-ebaysuggest

Scrape Ebay search suggestions in Python

Instructions

  1. Install:
pip install easyscrape-ebaysuggest
  1. Get Ebay Suggestions for a Search Term:
from easyscrape_ebaysuggest import querysuggestions as ES

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

['monty python and the holy grail', 'monty python flying circus complete', 'monty python and the holy grail vhs', 'monty python', 'monty python and the holy grail blu ray', 'monty python and the holy grail action figures', 'monty python flying circus complete dvd', 'monty python funko pop', 'monty python and the holy grail dvd', 'monty python shirt']
  1. ES query returns a list of strings with the results.