Verifying Scrapy Module Installation

To verify if Scrapy has been successfully installed in your system run the below code in a python IDE of your choice:

Python3




import scrapy
scrapy.__version__


If successfully installed you will get the following output.


How to Install Python Scrapy on Windows?

Scrapy is a web scraping library that is used to scrape, parse and collect web data. Now once our spider has scrapped the data then it decides whether to:

  • Keep the data.
  • Drop the data or items.
  • stop and store the processed data items.

In this article, we will look into the process of installing the Scrapy module on Windows.

Similar Reads

Pre-requisites:

The only thing that you need for installing the Scrapy module on Windows are:...

Installing Scrapy on Windows:

For Conda Users:...

Verifying Scrapy Module Installation:

To verify if Scrapy has been successfully installed in your system run the below code in a python IDE of your choice:...