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, api_key, endpoint):
if api_key is None:
raise ValueError("Parameter 'api_key' must not be None.")
if endpoint is None:
raise ValueError("Parameter 'endpoint' must not be None.")
base_url = '{Endpoint}/customvision/v3.0/prediction'
super(CustomVisionPredictionClientConfiguration, self).__init__(base_url)
self.add_user_agent('azure-cognitiveservices-vision-customvision/{}'.format(VERSION))
self.api_key = api_key
self.endpoint = endpoint
def __init__(
self, api_key, endpoint):
self.config = CustomVisionPredictionClientConfiguration(api_key, endpoint)
super(CustomVisionPredictionClient, self).__init__(None, self.config)
client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)}
self.api_version = '3.0'
self._serialize = Serializer(client_models)
self._deserialize = Deserializer(client_models)