Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
def __init__(
self, endpoint, credentials):
if endpoint is None:
raise ValueError("Parameter 'endpoint' must not be None.")
if credentials is None:
raise ValueError("Parameter 'credentials' must not be None.")
base_url = '{Endpoint}/vision/v2.0'
super(ComputerVisionClientConfiguration, self).__init__(base_url)
self.add_user_agent('azure-cognitiveservices-vision-computervision/{}'.format(VERSION))
self.endpoint = endpoint
self.credentials = credentials
def __init__(
self, endpoint, credentials):
self.config = ComputerVisionClientConfiguration(endpoint, credentials)
super(ComputerVisionClient, 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 = '2.0'
self._serialize = Serializer(client_models)
self._deserialize = Deserializer(client_models)