Skip to content

Latest commit

 

History

History
19 lines (9 loc) · 518 Bytes

README.md

File metadata and controls

19 lines (9 loc) · 518 Bytes

Scrapers

How to Use Scrapy

First create project using below command.

scrapy startproject project

Then move to spider folder(inside project) and create python file like weather_website_scraper.py. You can write your scraper. I have written two scrapper. If you want to use so just follow the above steps.

You can run scraper using two ways.

first way :scrapy crawl classname(inside pythonwebsite).

Second way :I have written a code on weather_website_scraper.py .just you need to run python code.

Thank you