Lyrics return blank
Closed this issue · 1 comments
ItsJustAGitHubMichealWhosGonnaSeeIt5Ppl commented
When getting songs, lyrics is returned blank/empty.
Expected behavior
Lyrics are returned
To Reproduce
genius = Genius(GENIUS_TOKEN,verbose=False)
artist = genius.search_artist('Noah Kahan',max_songs=3) # The songs in here also have the blank lyric field, but artist info is all correct.
lyric = artist.song('Everything Everywhere') # This is None/Blank
lyrics2 = genius.search_song(title='Everything Everywhere',artist=artist.name) # This is None/Blank
Version info
- Package version: 3.0.1
- OS: Linux: Ubuntu 24.04LTS & MacOS 15
ItsJustAGitHubMichealWhosGonnaSeeIt5Ppl commented
Fixed