Sie sind auf Seite 1von 1

1- Create a project :

scrapy startproject tutorial

2- Spiders are classes that you define and that Scrapy uses to scrape
information from a website (or a group of websites). They must subclass
scrapy.Spider and define the initial requests to make .

// *****************************************************************

scrapy startproject PROJECTNAME

cd PROJECTNAME

scrapy genspider example example.com

scrapy crawl quotes

Das könnte Ihnen auch gefallen