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
def get_book_url():
if re.findall(r"id=[A-Za-z0-9-_]+", url):
id_part = re.findall(r"id=[A-Za-z0-9-_]+", url)[-1]
The text was updated successfully, but these errors were encountered:
Eddict
changed the title
Books with an id containing a hyphen/dash are not handled properly
Books with an id containing a hyphen/dash/underscore are not handled properly
Apr 17, 2021
eg. https://books.google.nl/books?id=S-Fu4fGHnlAC
eg. https://books.google.nl/books?id=J2jC7gH_4xAC
can be solved by correcting the regex
The text was updated successfully, but these errors were encountered: