
    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 )GoogleScholarSearcha  GoogleScholarSearch enables to search google scholar and parse the result.
    ```python
    from serpapi import GoogleScholarSearch
    query = GoogleScholarSearch({"q": "coffee"})
    data = query.get_json()
    ```

    doc: https://serpapi.com/google-scholar-api
    c                 6    t         t        |   |t               y )N)superr   __init__GOOGLE_SCHOLAR_ENGINE)selfparams_dict	__class__s     e/var/www/html/marco-python-backend/venv/lib/python3.12/site-packages/serpapi/google_scholar_search.pyr
   zGoogleScholarSearch.__init__   s    !41+?TU    c                     t        d      )Nz9location is not supported by Google scholar search enginer   )r   qlimits      r   get_locationz GoogleScholarSearch.get_location   s    $%`aar   )   )__name__
__module____qualname____doc__r
   r   __classcell__)r   s   @r   r   r      s    Vbr   r   N)serpapi.serp_api_client!serpapi.serp_api_client_exceptionr   SerpApiClientr    r   r   <module>r      s    % Db- br   