From aab129c9ee1f601343e2b697e7772dcaa03a3a8e Mon Sep 17 00:00:00 2001 From: Whiddon Sibdhannie Date: Sat, 1 May 2021 17:28:02 -0400 Subject: [PATCH] Add a todo for Spotify Client --- spotify_data/spotifyclient.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/spotify_data/spotifyclient.py b/spotify_data/spotifyclient.py index 65707d0..1a9e6f4 100644 --- a/spotify_data/spotifyclient.py +++ b/spotify_data/spotifyclient.py @@ -2,8 +2,12 @@ import json import base64 -# GOAL: Create a cleaner SpotifyClient class to call from main app - +""" +@todo: +Merge this class with merge spotify.py +Some functions are in both, but the important functions in this file pertain +to creating and modifying Spotify playlists for a user +""" RECENT_TRACKS_ENDPOINT = 'https://api.spotify.com/v1/me/player/recently-played?limit=5' PLAYLISTS_ENDPOINT = 'https://api.spotify.com/v1/me/playlists'