Artist

class deezer.resources.Artist(client, json)

To work with Deezer artist objects.

Check the Deezer documentation for more details about each field.

id: int
name: str
share: str
picture: str
picture_small: str
picture_medium: str
picture_big: str
picture_xl: str
nb_album: int
nb_fan: int
radio: bool
tracklist: str
get_top(**kwargs)

Get the top tracks of an artist.

Returns

a PaginatedList of Track instances.

Return type

deezer.pagination.PaginatedList[deezer.resources.Track]

Get a list of related artists.

Returns

a PaginatedList of Artist instances

Return type

deezer.pagination.PaginatedList[deezer.resources.Artist]

get_radio(**kwargs)

Get a list of tracks.

Returns

list of Track instances

Return type

list[deezer.resources.Track]

get_albums(**kwargs)

Get a list of artist’s albums.

Returns

a PaginatedList of Album instances

Return type

deezer.pagination.PaginatedList[deezer.resources.Album]

get_playlists(**kwargs)

Get a list of artist’s playlists.

Returns

a PaginatedList of Playlist instances

Return type

deezer.pagination.PaginatedList[deezer.resources.Playlist]