Musical Artist Information API
Vibes is an open-source API designed to retrieve information about a musical artist, including their songs and albums, using the spotipy
library.
Clone: https://github.com/MG-Corp/Vibes.git
example = Vibes(ID, SECRET)
stats = example.artistStats(artist)
ID = stats[-1]
print(stats) -> Returns (followers, genres, popularity, artist picture, ID)
print(example.artistTopTracks(ID)) -> Returns (songs, popularity, album, duration, explicit)
print(example.artistAlbums(ID)) -> Returns (names, release, tracks)
Before that, please go to, https://developer.spotify.com/
to get a developer account.