albums tracks count

This commit is contained in:
localhost_frssoft 2023-06-12 14:47:45 +03:00
parent 88d619f304
commit 03ff52fcec
1 changed files with 4 additions and 3 deletions

View File

@ -37,13 +37,14 @@ def list_albums(albums=None, pg=None, search=None, artist=None, library=None, in
for i in albums_results:
index = albums_results.index(i)
album_name = i.get('title')
option_str = f'{index}.{album_name}'
album_tracks_count = i.get('tracks_count')
option_str = f'{index}.{album_name} | {album_tracks_count}'
artist_name = i.get('artist')
if show_artist_name_in_albums and isinstance(artist_name, dict):
artist_name = artist_name.get('name')
option_str += f' | Artist: {artist_name}'
option_str += f' | {artist_name}'
view.append(f'{option_str}')
select = fzf.prompt(view)[0].split('.', 1)[0]
select = fzf.prompt(view, '--header=\'map: album | tracks count | opt. artist\'')[0].split('.', 1)[0]
if select == 'Next page':
list_albums(pg=albums_next)
elif select == 'Prev page':