Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 666 Bytes

README.md

File metadata and controls

28 lines (23 loc) · 666 Bytes

Scraping allitebooks with Flask and bs4

Scrape the result list of search query from allitebooks.com and view the complete detail in one page. So the user doesn't have to go to book page to see the detail of the book.

Prequisites

  1. You need to have python3 along with pip installed in your computer.
  2. Install virtual environment inside project folder.
    python3 -m venv env
    
  3. Install required package with pip
    pip install -r requirement.txt
    

Run the program

  1. Go to project folder and activate virtual env
    source env/bin/activate
    
  2. Run the program
    python app.py
    
  3. Open localhost:5000 in your browser.