Welcome to my Web Scraping Projects repository. This repository contains various web scraping projects developed using Python and Scrapy. Each project is designed to scrape data from different websites and save it in a structured format.
- Scrapes cryptocurrency prices from crypto.com.
- Saves data including name, price, 24-hour change, 24-hour volume, and market cap.
- Scrapes product details from Amazon.
- Saves data including product name, price, rating, and reviews.
- Scrapes car listings from various car dealer websites.
- Saves data including car model, price, year, and mileage.
- Scrapes weather information of all Indian cities from timeanddate.com.
- Saves data including city name, temperature, humidity, wind speed, and weather condition.
. ├── amazon/ │ ├── amazon/ │ │ ├── init.py │ │ ├── items.py │ │ ├── middlewares.py │ │ ├── pipelines.py │ │ ├── settings.py │ │ └── spiders/ │ │ ├── init.py │ │ └── amazon_spider.py │ ├── scrapy.cfg │ └── output.csv
├── cars/ │ ├── cars/ │ │ ├── init.py │ │ ├── items.py │ │ ├── middlewares.py │ │ ├── pipelines.py │ │ ├── settings.py │ │ └── spiders/ │ │ ├── init.py │ │ └── cars_spider.py │ ├── scrapy.cfg │ └── output.csv
├── crypto/ │ ├── crypto/ │ │ ├── init.py │ │ ├── items.py │ │ ├── middlewares.py │ │ ├── pipelines.py │ │ ├── settings.py │ │ └── spiders/ │ │ ├── init.py │ │ └── crypto_spider.py │ ├── scrapy.cfg │ └── output.csv
├── weather_info/ │ ├── weather_info/ │ │ ├── init.py │ │ ├── items.py │ │ ├── middlewares.py │ │ ├── pipelines.py │ │ ├── settings.py │ │ └── spiders/ │ │ ├── init.py │ │ └── weather_info_spider.py │ ├── scrapy.cfg │ └── output.csv ├── requirements.txt └── README.md