Skip to content

Commit

Permalink
Adding example for unfollowing/deleting a playlist (#746)
Browse files Browse the repository at this point in the history
* Adding example for deleting a playlist

* Renaming to unfollow_playlist
  • Loading branch information
rautskaa committed Nov 23, 2021
1 parent 7d23fc3 commit 2aeda6a
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions examples/unfollow_playlist.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import argparse
import logging

import spotipy
from spotipy.oauth2 import SpotifyOAuth

logger = logging.getLogger('examples.unfollow_playlist')
logging.basicConfig(level='DEBUG')

'''
Spotify doesn't have a dedicated endpoint for deleting a playlist. However,
unfollowing a playlist has the effect of deleting it from the user's account.
When a playlist is removed from the user's account, the system unfollows it,
and then no longer shows it in playlist list.'''


def get_args():
parser = argparse.ArgumentParser(description='Unfollows a playlist')
parser.add_argument('-p', '--playlist', required=True,
help='Playlist id')
return parser.parse_args()


def main():
args = get_args()
sp = spotipy.Spotify(auth_manager=SpotifyOAuth())
sp.current_user_unfollow_playlist(args.playlist)


if __name__ == '__main__':
main()

0 comments on commit 2aeda6a

Please sign in to comment.