Source code for azure.cognitiveservices.search.websearch.web_search_api

# coding=utf-8
# --------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
#
# Code generated by Microsoft (R) AutoRest Code Generator.
# Changes may cause incorrect behavior and will be lost if the code is
# regenerated.
# --------------------------------------------------------------------------

from msrest.service_client import SDKClient
from msrest import Configuration, Serializer, Deserializer
from .version import VERSION
from .operations.web_operations import WebOperations
from . import models


class WebSearchAPIConfiguration(Configuration):
    """Configuration for WebSearchAPI
    Note that all parameters used to create this instance are saved as instance
    attributes.

    :param credentials: Subscription credentials which uniquely identify
     client subscription.
    :type credentials: None
    :param str base_url: Service URL
    """

    def __init__(
            self, credentials, base_url=None):

        if credentials is None:
            raise ValueError("Parameter 'credentials' must not be None.")
        if not base_url:
            base_url = 'https://api.cognitive.microsoft.com/bing/v7.0'

        super(WebSearchAPIConfiguration, self).__init__(base_url)

        self.add_user_agent('azure-cognitiveservices-search-websearch/{}'.format(VERSION))

        self.credentials = credentials


[docs]class WebSearchAPI(SDKClient): """The Web Search API lets you send a search query to Bing and get back search results that include links to webpages, images, and more. :ivar config: Configuration for client. :vartype config: WebSearchAPIConfiguration :ivar web: Web operations :vartype web: azure.cognitiveservices.search.websearch.operations.WebOperations :param credentials: Subscription credentials which uniquely identify client subscription. :type credentials: None :param str base_url: Service URL """ def __init__( self, credentials, base_url=None): self.config = WebSearchAPIConfiguration(credentials, base_url) super(WebSearchAPI, self).__init__(self.config.credentials, self.config) client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} self.api_version = '1.0' self._serialize = Serializer(client_models) self._deserialize = Deserializer(client_models) self.web = WebOperations( self._client, self.config, self._serialize, self._deserialize)