johnwmillr/LyricsGenius

Song search incorrect result

shrddr opened this issue · 0 comments

Describe the bug
Searching for song "Compa" by artist "Phil Lober" returns song "Geechi Gotti vs. Charlie Clips" by artist "URLtv"

Expected behavior
Should return None, because

To Reproduce

artist = genius.search_artist('Phil Lober', max_songs=0)
song = genius.search_song('Compa', artist.name)

or just song = genius.search_song('Compa', 'Phil Lober')

Version info

  • Package version 3.0.1
  • OS: Windows

Additional context

artist = genius.search_artist('Phil Lober', max_songs=0)
songs = genius.search_artist_songs(artist.id, 'Compa')

works correctly, returns empty dict