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
Is there any way to get around the 101 page limit on searches? I seem to always hit 101 pages before another page cannot be iterated on. I highly doubt I've gone over every song in Genius' database. Any known way around this or is it just the limits of the API?
I have been using this to search and it always breaks at 101, if it is not a limit of the library or API, is there another way I should try searching?
page = 1
while page:
search = genius.search_lyrics(word_being_searched, page=page)
page = search['next_page']
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Is there any way to get around the 101 page limit on searches? I seem to always hit 101 pages before another page cannot be iterated on. I highly doubt I've gone over every song in Genius' database. Any known way around this or is it just the limits of the API?
I have been using this to search and it always breaks at 101, if it is not a limit of the library or API, is there another way I should try searching?
page = 1
while page:
search = genius.search_lyrics(word_being_searched, page=page)
page = search['next_page']
Beta Was this translation helpful? Give feedback.
All reactions