
    2i{                     0    d dl  d dlmZ  G d de      Zy)    )*SerpApiClientExceptionc                   *     e Zd ZdZ fdZddZ xZS )
EbaySearchzEbaySearch enables to search ebay and parse the result.
    ```python
    from serpapi import EbaySearch
    query = EbaySearch({"_nkw": "coffee"})
    data = query.get_json()
    ```

    doc: https://serpapi.com/ebay-search-api
    c                 6    t         t        |   |t               y )N)superr   __init__EBAY_ENGINE)selfparams_dict	__class__s     [/var/www/html/marco-python-backend/venv/lib/python3.12/site-packages/serpapi/ebay_search.pyr
   zEbaySearch.__init__   s    j$(kB    c                     t        d      )Nz<location is not supported by Ebay search engine at this timer   )r   qlimits      r   get_locationzEbaySearch.get_location   s    $%cddr   )   )__name__
__module____qualname____doc__r
   r   __classcell__)r   s   @r   r   r      s    Cer   r   N)serpapi.serp_api_client!serpapi.serp_api_client_exceptionr   SerpApiClientr    r   r   <module>r      s    % De er   