Skip to content

Latest commit

 

History

History
37 lines (23 loc) · 1.02 KB

README.md

File metadata and controls

37 lines (23 loc) · 1.02 KB

ISBN Scraper 📚

GitHub Pipenv locked Python version License

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.

Installation

Use the package manager pip to install the required libraries.

pip install -r requirements.txt

or

Using pipenv:

pipenv install

Usage

To scrape your list of ISBNs, you must do the following:

  1. Add your list as a CSV file in 'Data' directory.
  2. Open app.py and change the name of the file on line 81.
   isbns = pd.read_csv("<YourISBNsGoHere.csv>")
  1. Run app.py. The final output will be saved as 'Final_Inventory.csv'.