We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
the code that I ran: from lyrics_extractor import SongLyrics
apiKey = 'AIzaSyD0wLKKCF8h8P9RcFKeuBvrsCttZjbs_wY' engineID = 'ee477aa93a682'
extract_lyrics = SongLyrics(apiKey, engineID) lyrics = extract_lyrics.get_lyrics('shape of you') raises exception here^^
The text was updated successfully, but these errors were encountered:
I had a identical problem. The exception I got was:
LyricScraperException: {'error': {'code': 400, 'message': 'Request contains an invalid argument.', 'errors': [{'message': 'Request contains an invalid argument.', 'domain': 'global', 'reason': 'badRequest'}], 'status': 'INVALID_ARGUMENT'}}
Sorry, something went wrong.
Has anyone solved this? I'm getting the same exception; Code 400, etc.
No branches or pull requests
the code that I ran:
from lyrics_extractor import SongLyrics
apiKey = 'AIzaSyD0wLKKCF8h8P9RcFKeuBvrsCttZjbs_wY'
engineID = 'ee477aa93a682'
extract_lyrics = SongLyrics(apiKey, engineID)
lyrics = extract_lyrics.get_lyrics('shape of you')
raises exception here^^
The text was updated successfully, but these errors were encountered: