Web Scraping with Python | Tata Car Data Extractor
I recently completed a simple web scraping task using Python and BeautifulSoup to extract car details from the Tata cars page on ACKO Drive.
This was my first hands-on project in web scraping, and it helped me understand how to work with real websites and HTML content.
🔎 Data I Extracted:
Car Make
Car Model
Price
Fuel Type
Transmission Type
Number of Color Variants (like "Available in 5 colors")
Output:
The extracted data was stored in a CSV file using pandas.This file (tata_cars_simple.csv) can be opened easily in Excel or Google Sheets for further use.
🛠 Tools I Used:
Python
BeautifulSoup
Requests
Pandas
Regex (to find color variant numbers)
56 Views

