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

    doc: https://serpapi.com/bing-search-api
    c                 6    t         t        |   |t               y )N)superr   __init__BING_ENGINE)selfparams_dict	__class__s     [/var/www/html/marco-python-backend/venv/lib/python3.12/site-packages/serpapi/bing_search.pyr   zBingSearch.__init__   s    j$(kB    )__name__
__module____qualname____doc__r   __classcell__)r   s   @r   r   r      s    C Cr   r   N)serpapi.serp_api_clientSerpApiClientr    r   r   <module>r      s    %C Cr   