Skip to content

Commit

Permalink
Add track to user playlist from ISRC (Fixes #96)
Browse files Browse the repository at this point in the history
  • Loading branch information
tehkillerbee committed Oct 1, 2024
1 parent 48459c8 commit 029e8a8
Showing 1 changed file with 31 additions and 2 deletions.
33 changes: 31 additions & 2 deletions tidalapi/playlist.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,8 @@ def add(
:param media_ids: List of Media IDs to add.
:param allow_duplicates: Allow adding duplicate items
:param position: Insert items at a specific position. Default: insert at the end
of the playlist
:param position: Insert items at a specific position.
Default: insert at the end of the playlist
:return: True, if successful.
"""
# Insert items at a specific index
Expand All @@ -302,6 +302,35 @@ def add(
self._reparse()
return res.ok

def add_by_isrc(
self,
isrc: str,
allow_duplicates: bool = False,
position: int = -1,
) -> bool:
"""
Add an item to a playlist, using the track ISRC
:param isrc: The ISRC to be added
:param allow_duplicates: Allow adding duplicate items
:param position: Insert items at a specific position.
Default: insert at the end of the playlist
:return: True, if successful.
"""
try:
track = self.session.get_tracks_by_isrc(isrc)
if track:
# Add the first track in the list
return self.add(
[str(track[0].id)],
allow_duplicates=allow_duplicates,
position=position,
)
else:
return False
except ObjectNotFound:
return False

def move_by_id(self, media_id: str, position: int) -> bool:
"""Move an item to a new position, by media ID.
Expand Down

0 comments on commit 029e8a8

Please sign in to comment.