MCPcopy
hub / github.com/spotipy-dev/spotipy / user_unfollow_users

Method user_unfollow_users

spotipy/client.py:1681–1687  ·  view source on GitHub ↗

Unfollow one or more users Parameters: - ids - a list of user IDs

(self, ids=[])

Source from the content-addressed store, hash-verified

1679 return self._delete("me/library", uris=",".join(alist))
1680
1681 def user_unfollow_users(self, ids=[]):
1682 """ Unfollow one or more users
1683 Parameters:
1684 - ids - a list of user IDs
1685 """
1686 ulist = [self._get_uri("user", a) for a in ids]
1687 return self._delete("me/library", uris=",".join(ulist))
1688
1689 def featured_playlists(
1690 self, locale=None, country=None, timestamp=None, limit=20, offset=0

Calls 2

_get_uriMethod · 0.95
_deleteMethod · 0.95

Tested by 1