November 2017
Intermediate to advanced
226 pages
5h 59m
English
Let's create a simple spider with the Scrapy:
$ mkdir new-spider $ cd new-spider
$ scrapy startproject books
This will create a project with the name books and some useful files for creating the crawler. Now you have a folder structure, as shown in the following screenshot:

$ scrapy genspider home books.toscrape.com
This will generate the code for the spider with the name home, as we are planning to ...
Read now
Unlock full access