diff --git a/docker-compose.yml b/docker-compose.yml deleted file mode 100644 index 3314f62..0000000 --- a/docker-compose.yml +++ /dev/null @@ -1,28 +0,0 @@ -version: '3' - -networks: - backend: - external: false - -services: - backend: - image: registry.kmlabz.com/onspot/backend - restart: always - depends_on: - - db - environment: - - ONSPOT_REDIS_URL=redis://db:6379/0 - - ONSPOT_ENCODED_SECRET_KEY=BSE64ENCODED32CHARSLONGSTRING - - ONSPOT_SPOTIFY_CLIENT_ID=CHANGEME - - ONSPOT_SPOTIFY_CLIENT_SECRET=KEEPMESECRET - ports: - - "127.0.0.1:8080:8080" - networks: - - backend - db: - image: redis - restart: always - ports: - - "127.0.0.1:6379:6379" - networks: - - backend diff --git a/src/resources/apiinteractionresource.py b/src/resources/apiinteractionresource.py index 1c71152..ac07bd4 100644 --- a/src/resources/apiinteractionresource.py +++ b/src/resources/apiinteractionresource.py @@ -31,7 +31,6 @@ class APIInteractionResource(UserStoreResource): imagedata = spot_data[0]['images'] elif mb_type == "release": spot_data = self.spotify.search(q=querystring, type="album", limit=1)['albums']['items'] - print(self.spotify.search(q=querystring, type="album", limit=1)) if not spot_data: return None, None, None spotify_uri += "album:"