Scrape the title, author(s), public domain info, page count, language, & brief summary for a list of books based on their ISBNs.
To use this script, install the required libraries, add a list of ISBNs, and run app.py.
Use the package manager pip to install the required libraries.
pip install -r requirements.txt
or
Using pipenv:
pipenv install
To scrape your list of ISBNs, you must do the following:
- Add your list as a CSV file in 'Data' directory.
- Open app.py and change the name of the file on line 81.
isbns = pd.read_csv("<YourISBNsGoHere.csv>")
- Run app.py. The final output will be saved as 'Final_Inventory.csv'.