Chart

class deezer.resources.Chart(client, json)

To work with Deezer chart objects.

Check the Deezer documentation for more details about each field.

tracks: list[deezer.resources.Track]
albums: list[deezer.resources.Album]
artists: list[deezer.resources.Artist]
playlists: list[deezer.resources.Playlist]
podcasts: list[deezer.resources.Podcast]
get_tracks(**kwargs)
Returns

a PaginatedList of Track instances

Return type

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

get_albums(**kwargs)
Returns

a PaginatedList of Album instances

Return type

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

get_artists(**kwargs)
Returns

a PaginatedList of Artist instances

Return type

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

get_playlists(**kwargs)
Returns

a PaginatedList of Playlist instances

Return type

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