How to use the azure-cognitiveservices-search-videosearch.azure.cognitiveservices.search.videosearch.video_search_api.VideoSearchAPIConfiguration function in azure-cognitiveservices-search-videosearch

To help you get started, we’ve selected a few azure-cognitiveservices-search-videosearch examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github Azure / azure-sdk-for-python / azure-cognitiveservices-search-videosearch / azure / cognitiveservices / search / videosearch / video_search_api.py View on Github external
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(VideoSearchAPIConfiguration, self).__init__(base_url)

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

        self.credentials = credentials
github Azure / azure-sdk-for-python / azure-cognitiveservices-search-videosearch / azure / cognitiveservices / search / videosearch / video_search_api.py View on Github external
def __init__(
            self, credentials, base_url=None):

        self.config = VideoSearchAPIConfiguration(credentials, base_url)
        super(VideoSearchAPI, 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.videos = VideosOperations(
            self._client, self.config, self._serialize, self._deserialize)

azure-cognitiveservices-search-videosearch

Microsoft Azure Cognitive Services Video Search Client Library for Python

MIT
Latest version published 4 years ago

Package Health Score

69 / 100
Full package analysis

Popular azure-cognitiveservices-search-videosearch functions

Similar packages