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.
- Host: GitHub
- URL: https://github.com/tomchimorin/ebook-to-excelsheet
- Owner: TomChimorin
- License: mit
- Created: 2025-04-21T07:15:34.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-04-25T05:03:14.000Z (5 months ago)
- Last Synced: 2025-05-17T11:11:13.588Z (5 months ago)
- Topics: beautifulsoup4, http-requests, openpyxl, python3
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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