An open API service indexing awesome lists of open source software.

https://github.com/tomchimorin/ebook-to-excelsheet

A Python script that scrapes ebook titles, authors, publish dates, and descriptions from a website and saves the data into a neat Excel file.
https://github.com/tomchimorin/ebook-to-excelsheet

beautifulsoup4 http-requests openpyxl python3

Last synced: 3 months ago
JSON representation

A Python script that scrapes ebook titles, authors, publish dates, and descriptions from a website and saves the data into a neat Excel file.

Awesome Lists containing this project

README

          

# Ebook Scraper 📚🖥️

This Python script allows you to scrape ebook details—such as the title, author, publication date, and description—from an ebook website and export the data into a clean, well-structured Excel sheet.

## Features
- Scrapes book title, author, publish date, and description
- Outputs the data into a formatted Excel (.xlsx) file
- Easy to run and modify for different ebook sites

## Technologies Used
- **Python**
- **BeautifulSoup**: For HTML parsing and data extraction
- **requests**: For sending HTTP requests
- **openpyxl**: For writing data to Excel

## How to Run

1. Make sure you have Python 3 installed.
2. Install required libraries:
```bash
pip install beautifulsoup4 requests openpyxl