maria-antoniak / goodreads-scraper

A Python scraper for Goodreads books and reviews.
GNU General Public License v3.0
274 stars 83 forks source link

Added series name and URI scraping #15

Closed sgloutnikov closed 3 years ago

sgloutnikov commented 3 years ago

Added series scraping if a book is part of a series. If it is not, an empty string is used ("" for JSON and ,, for CSV).

Ex: https://www.goodreads.com/book/show/2657.To_Kill_a_Mockingbird

I was getting an error importing HTTPError from urllib.request in Python 3. urllib.error package holds that exception.

https://docs.python.org/3/library/urllib.error.html#urllib.error.HTTPError

maria-antoniak commented 3 years ago

Thank you, this looks great!