
    2i                     :    d dl  d dlmZ d dl  G d de      Zy)    )*SerpApiClientExceptionc                   *     e Zd ZdZ fdZddZ xZS )DuckDuckGoSearcha  DuckDuckGoSearch enables to search google scholar and parse the result.
    ```python
    from serpapi import DuckDuckGoSearch
    search = DuckDuckGoSearch({"query": "chair"})
    data = search.get_json()
    ```

    doc: https://serpapi.com/duckduckgo-search-api
    c                 6    t         t        |   |t               y )N)superr   __init__DUCKDUCKGO_ENGINE)selfparams_dict	__class__s     c/var/www/html/marco-python-backend/venv/lib/python3.12/site-packages/serpapi/duck_duck_go_search.pyr
   zDuckDuckGoSearch.__init__   s    .{<MN    c                     t        d      )Nz2location is not supported by walmart search enginer   )r   qlimits      r   get_locationzDuckDuckGoSearch.get_location   s    $%YZZr   )   )__name__
__module____qualname____doc__r
   r   __classcell__)r   s   @r   r   r      s    O[r   r   N)serpapi.serp_api_client!serpapi.serp_api_client_exceptionr   serpapi.constantSerpApiClientr    r   r   <module>r       s    % D [} [r   