
    2i                     $    d dl   G d de      Zy)    )*c                   "     e Zd ZdZ fdZ xZS )GoogleSearcha  GoogleSearch enables to search google and parse the result.
    ```python
    from serpapi import GoogleSearch
    query = GoogleSearch({"q": "coffee", "location": "Austin,Texas"})
    data = query.get_json()
    ```

    https://github.com/serpapi/google-search-results-python
    c                 6    t         t        |   |t               y )N)superr   __init__GOOGLE_ENGINE)selfparams_dict	__class__s     ]/var/www/html/marco-python-backend/venv/lib/python3.12/site-packages/serpapi/google_search.pyr   zGoogleSearch.__init__   s    lD*;F    )__name__
__module____qualname____doc__r   __classcell__)r   s   @r   r   r      s    G Gr   r   N)serpapi.serp_api_clientSerpApiClientr    r   r   <module>r      s    %G= Gr   