prerequisite of scrapy installation:
Python 2.7 or above 3.3
pip and setuptools Python packages.
lxml
OpenSSL.
You can install Scrapy using pip. To install using pip run:
pip install Scrapy
Platform specific installation
Anaconda
This is the recommended way to install Scrapy.
...
Before starting work with scrapy you have to start a project where you want to store your code. Enter the directory and run this code
scrapy startproject helloProject
The third part of this code is project name. This code will create a "helloProject" directory with the following conten...