This is a Python web scraping project that extracts quotes, authors, and tags from the website:
The script collects the data and saves it into a CSV file.
- Extracts quote text
- Extracts author names
- Extracts tags
- Stores data in CSV format
- Uses Requests and BeautifulSoup
- Python
- Requests
- BeautifulSoup
- CSV Module
The script generates a CSV file:
quotes_to_scrape.csv
Example output:
Quote | Author | Tags
Install required libraries:
pip install requests beautifulsoup4
Run the script:
python quotes_scraper.py
This project was created as part of learning Python web scraping and data extraction.