In this Python Scrapy tutorial, you will learn how to write a simple webscraper in Python using the Scrapy framework. The Data Blogger website will be used as an example in this article.
Scrapy: An open source and collaborative framework for extracting the data you need from websites. In a fast, simple, yet extensible way.
By the way, if you are interested in scraping Tweets, you should definitely read this article.
Introduction
In this tutorial we will build the webscraper using only Scrapy + Python 3 (or Python 2) and no more! The tutorial has both Python 2 and Python 3 support. The possibilities are endless. Beware that some webscrapes are not legal! For example, although it is possible, it is not allowed to use Scrapy or any other webscraper to scrape LinkedIn (https://www.linkedin.com/). However, LinkedIn lost in one case in 2017.
Content + Link extractor
The purpose of Scrapy is to extract content and links from a website. This is done by recursively following all the links on the given website.
Step 1: Installing Scrapy
According to the website of Scrapy, we just have to execute the following command to install Scrapy:
Step 2: Setting up the project
Now we will create the folder structure for your project. For the Data Blogger scraper, the following command is used. You can change datablogger_scraper to the name of your project.
1 |
|
Step 3: Creating an Object
The next thing to do, is to create a spider that will crawl the website(s) of interest. The spider needs to know what data is crawled. This data can be put into an object. In this tutorial we will crawl internal links of a website. A link is defined as an object having a source URL and a destination URL. The source URL is the URL on which the link can be found. It also has a destination URL to which the link is navigating to when it is clicked. A link is called an internal link if both the source URL and destination URL are on the website itself.
Scrape Object Implementation
The object is defined in items.py and for this project, items.py has the following contents:
1 |
|
Notice that you can define any object you would like to crawl! For example, you can specify an object Game Console (with properties “vendor”, “price” and “release date”) when you are scraping a website about Game Consoles. If you are scraping information about music from multiple websites, you could define an object with properties like “artist”, “release date” and “genre”. On LinkedIn you could scrape a “Person” with properties “education”, “work” and “age”.
Step 4: Creating the Spider
Now we have encapsulated the data into an object, we can start creating the spider. First, we will navigate towards the project folder. Then, we will execute the following command to create a spider (which can then be found in the spiders/ directory):
1 |
|
Spider ImplementationNow, a spider is created (spiders/datablogger.py). You can customize this file as much as you want. I ended up with the following code:
1 |
|
A few things are worth mentioning. The crawler extends the CrawlSpider object, which has a parse method for scraping a website recursively. In the code, one rule is defined. This rule tells the crawler to follow all links it encounters. The rule also specifies that only unique links are parsed, so none of the links will be parsed twice! Furthermore, the canonicalize property makes sure that links are not parsed twice.
LinkExtractor
The LinkExtractor is a module with the purpose of extracting links from web pages.
Step 5: Executing the Spider
Go to the root folder of your project. Then execute the following command:
1 |
|
This command then runs over your website and generates a CSV file to store the data into. In my case, I got a CSV file named links.csv with the following content:
1 |
|
ConclusionIt is relatively easy to write your own spider with Scrapy. You can specify the data you want to scrape in an object and you can specify the behaviour of your crawler. If you have any questions, feel free to ask them in the comments section!