From 4f52839b5f241c997556ed59fbbf2ffac9d7cc05 Mon Sep 17 00:00:00 2001 From: Vincent Delaitre Date: Mon, 30 Dec 2019 15:49:00 +0100 Subject: [PATCH] Get rid of static.deepomatic.com --- demo.py | 2 +- tests/test_client.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/demo.py b/demo.py index 093864a..6847e0f 100644 --- a/demo.py +++ b/demo.py @@ -12,7 +12,7 @@ from deepomatic.api.client import Client from deepomatic.api.inputs import ImageInput -demo_url = "https://static.deepomatic.com/resources/demos/api-clients/dog1.jpg" +demo_url = "https://deepo-tests.s3-eu-west-1.amazonaws.com/api-clients/dog1.jpg" logging.basicConfig(level=os.getenv('LOG_LEVEL', 'INFO'), format='[%(levelname)s %(name)s %(asctime)s %(process)d %(thread)d %(filename)s:%(lineno)s] %(message)s') diff --git a/tests/test_client.py b/tests/test_client.py index 7aa9f31..6fab49e 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -27,7 +27,7 @@ logging.basicConfig(level=os.getenv('LOG_LEVEL', 'INFO')) logger = logging.getLogger(__name__) -DEMO_URL = "https://static.deepomatic.com/resources/demos/api-clients/dog1.jpg" +DEMO_URL = "https://deepo-tests.s3-eu-west-1.amazonaws.com/api-clients/dog1.jpg" USER_AGENT_PREFIX = '{}-tests/{}'.format(__title__, __version__)