Skip to content

Latest commit

 

History

History
98 lines (74 loc) · 2.67 KB

README.md

File metadata and controls

98 lines (74 loc) · 2.67 KB

Web Scraping Projects

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.

Table of Contents

Projects

Crypto Prices Scraper

  • Scrapes cryptocurrency prices from crypto.com.
  • Saves data including name, price, 24-hour change, 24-hour volume, and market cap.

Amazon Product Scraper

  • Scrapes product details from Amazon.
  • Saves data including product name, price, rating, and reviews.

Cars Listing Scraper

  • Scrapes car listings from various car dealer websites.
  • Saves data including car model, price, year, and mileage.

Weather Information Scraper

  • Scrapes weather information of all Indian cities from timeanddate.com.
  • Saves data including city name, temperature, humidity, wind speed, and weather condition.

web_scraping_projects Structure

. ├── 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