You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dear geekpradd
The functions have an error when the name of the Artist or the Song have some symbols like "?" because it is not encoded into URL format.
You can solved importing urllib
and then in any search you can replace, for example album.artist() by urllib.quote_plus(album.artist()) and it will fix the problem.
This is needed specially in getLyrics() method
Best regards
The text was updated successfully, but these errors were encountered:
Dear geekpradd
The functions have an error when the name of the Artist or the Song have some symbols like "?" because it is not encoded into URL format.
You can solved importing urllib
and then in any search you can replace, for example album.artist() by urllib.quote_plus(album.artist()) and it will fix the problem.
This is needed specially in getLyrics() method
Best regards
The text was updated successfully, but these errors were encountered: