mirror of
https://zotify.xyz/zotify/zotify.git
synced 2024-11-10 01:02:06 +01:00
Upload New File
This commit is contained in:
parent
17876e428b
commit
d075784d60
1 changed files with 83 additions and 0 deletions
83
zotify/playlist.py
Normal file
83
zotify/playlist.py
Normal file
|
@ -0,0 +1,83 @@
|
||||||
|
from const import ITEMS, ID, TRACK, NAME
|
||||||
|
from termoutput import Printer
|
||||||
|
from track import download_track
|
||||||
|
from utils import split_input
|
||||||
|
from zotify import Zotify
|
||||||
|
|
||||||
|
MY_PLAYLISTS_URL = 'https://api.spotify.com/v1/me/playlists'
|
||||||
|
PLAYLISTS_URL = 'https://api.spotify.com/v1/playlists'
|
||||||
|
|
||||||
|
|
||||||
|
def get_all_playlists():
|
||||||
|
""" Returns list of users playlists """
|
||||||
|
playlists = []
|
||||||
|
limit = 50
|
||||||
|
offset = 0
|
||||||
|
|
||||||
|
while True:
|
||||||
|
resp = Zotify.invoke_url_with_params(MY_PLAYLISTS_URL, limit=limit, offset=offset)
|
||||||
|
offset += limit
|
||||||
|
playlists.extend(resp[ITEMS])
|
||||||
|
if len(resp[ITEMS]) < limit:
|
||||||
|
break
|
||||||
|
|
||||||
|
return playlists
|
||||||
|
|
||||||
|
|
||||||
|
def get_playlist_songs(playlist_id):
|
||||||
|
""" returns list of songs in a playlist """
|
||||||
|
songs = []
|
||||||
|
offset = 0
|
||||||
|
limit = 100
|
||||||
|
|
||||||
|
while True:
|
||||||
|
resp = Zotify.invoke_url_with_params(f'{PLAYLISTS_URL}/{playlist_id}/tracks', limit=limit, offset=offset)
|
||||||
|
offset += limit
|
||||||
|
songs.extend(resp[ITEMS])
|
||||||
|
if len(resp[ITEMS]) < limit:
|
||||||
|
break
|
||||||
|
|
||||||
|
return songs
|
||||||
|
|
||||||
|
|
||||||
|
def get_playlist_info(playlist_id):
|
||||||
|
""" Returns information scraped from playlist """
|
||||||
|
(raw, resp) = Zotify.invoke_url(f'{PLAYLISTS_URL}/{playlist_id}?fields=name,owner(display_name)&market=from_token')
|
||||||
|
return resp['name'].strip(), resp['owner']['display_name'].strip()
|
||||||
|
|
||||||
|
|
||||||
|
def download_playlist(playlist):
|
||||||
|
"""Downloads all the songs from a playlist"""
|
||||||
|
|
||||||
|
playlist_songs = [song for song in get_playlist_songs(playlist[ID]) if song[TRACK][ID]]
|
||||||
|
p_bar = Printer.progress(playlist_songs, unit='song', total=len(playlist_songs), unit_scale=True)
|
||||||
|
enum = 1
|
||||||
|
for song in p_bar:
|
||||||
|
download_track('extplaylist', song[TRACK][ID], extra_keys={'playlist': playlist[NAME], 'playlist_num': str(enum).zfill(2)}, disable_progressbar=True)
|
||||||
|
p_bar.set_description(song[TRACK][NAME])
|
||||||
|
enum += 1
|
||||||
|
|
||||||
|
|
||||||
|
def download_from_user_playlist():
|
||||||
|
""" Select which playlist(s) to download """
|
||||||
|
playlists = get_all_playlists()
|
||||||
|
|
||||||
|
count = 1
|
||||||
|
for playlist in playlists:
|
||||||
|
print(str(count) + ': ' + playlist[NAME].strip())
|
||||||
|
count += 1
|
||||||
|
|
||||||
|
selection = ''
|
||||||
|
print('\n> SELECT A PLAYLIST BY ID')
|
||||||
|
print('> SELECT A RANGE BY ADDING A DASH BETWEEN BOTH ID\'s')
|
||||||
|
print('> OR PARTICULAR OPTIONS BY ADDING A COMMA BETWEEN ID\'s\n')
|
||||||
|
while len(selection) == 0:
|
||||||
|
selection = str(input('ID(s): '))
|
||||||
|
playlist_choices = map(int, split_input(selection))
|
||||||
|
|
||||||
|
for playlist_number in playlist_choices:
|
||||||
|
playlist = playlists[playlist_number - 1]
|
||||||
|
print(f'Downloading {playlist[NAME].strip()}')
|
||||||
|
download_playlist(playlist)
|
||||||
|
|
||||||
|
print('\n**All playlists have been downloaded**\n')
|
Loading…
Reference in a new issue