Tutorial: How To Scrape Amazon Using Python Scrapy

Amazon is a tough website to scrape for Beginners.This blog post is a step by step guide to scraping Amazon using Python Scrapy .What
is Scrapy?
Prerequisites:
Scrapy 1.1.1
Scrapy is an application framework for crawling web sites and extracting structured / unstructured. data which can be used for a wide range of applications such as data mining, information processing or historical archival.
As we all know, this is the age of “Data” .Data is everywhere, and every organization wants to work with Data and take its business to a higher level.In this scenario Scrapy plays a vital role to provide Data to these organizations so That they can use it in wide range of applications.Scrapy is not only able to scrap data from websites, but it is able to scrap data from web services.For example Amazon API, Twitter / Facebook API as
well.How to install Scrapy?
Following are third party softwares and packages which need to be installed in order to install Scrapy in a
system.Python: As Scrapy has been built using Python language, one has to install it first.
pip: pip is a python package manager tool which maintaining a package repository and install python libraries, and its dependencies automatically.It is better to install pip according to system OS, and then try to follow the standard way for installing
Scrapy.lxml: This is an optional package but needs to be installed if one is willing to scrap html data.lxml is a python library which helps to structure html tree, as web pages use html hierarchy to organise information or
Data.One can install Scrapy using pip (which is the canonical way to install Python packages) .To install using Scrapy, run:
pip install scrapy

How to get started with Scrapy?
Scrapy is an application framework and it provides many commands to create applications and use them.Before creating an application, one will have to set up a new Scrapy project.Enter a directory where you'd like to store your code and run:
scrapy startproject test_project

Aluminium Fabrication

This will create a directory with the name of xyz in the same directory with following contents:
test_project /
scrapy.cfg
test_project /
__init__.py
items.py
pipelines.py
settings.py
spiders /
__init__.py

Scrapy, as an application framework follows a project structure along with Object Oriented style of programming to define items and spiders for overall applications.The project structure which scrapy creates for a user has,
scrapy.cfg: It is a project configuration file which contains information for setting module for the project along with its deployment information.test_project
: It is an application directory with many different files which are actually responsible for running and scraping data from web urls.
items.py: Items are containers that will be loaded with the scraped data; they work like simple Python dicts.while one can use plain Python dicts with Scrapy, Items provide additional protection against populating undeclared fields, preventing typos. They are declared by creating a scrapy.Item class and defining its attributes as scrapy.Field objects.
pipelines.py: After an item has been scraped by a spider, it is sent to the Item Pipeline which processes it through several components that are executed sequentially.Each item pipeline component is a Python class which has to implement a method called process_item to process It receives an item and performs an action on it, also decides if the item should continue through the pipeline or should be dropped and and not processed any longer.If it wants to drop an item then it raises DropItem exception to drop it .Settings
. Py: .It Allows One To Customise The Behavior Of All Scrapy Components, Including The Core, Extensions, Pipelines And Spiders Themselves It Provides A Global Namespace Of Key-Value Mappings That The Code Can Use To Pull Configuration Values ​​From.
spiders: Spiders is a directory which contains all spiders / crawlers as Python classes.Whenever one runs / crawls any spider then scrapy looks into this directory and tries to find the spider with its name provided by user.Spiders define how a certain site or a group of sites will be scraped, including how to perform the crawl and how to extract data from their pages.In other words, Spiders are the place where one defines the custom behavior for crawling and parsing pages for a particular site.Spiders have to define three major attributes ie start_urls which tells which URLs are to be scrapped, allowed_domains which defines only those domain names which need to scraped and parse is a method which is called when any response comes from lodged requests.These attributes are important because these consist the base . of Spider definitions.
Let's Scrape Amazon Web Page

To understand how scrapy works and how can we use it in practical scenarios, lets take an example in which we will scrap data related to a product, for example product name, its price, category and its availability on amazon.com website. As discussed earlier, before doing anything lets start with creating a scrapy project using the command
below.scrapy startproject amazon

This command will create a directory name amazon in the local folder with a structure as defined earlier.Now we need to create three different things to make the scrap process work successfully, they are,
Update items.py with fields which we want to extract. For Example Product Here Name, Category, Price Etc.
Create A New Spider In Which We Need To Define The Necessary Elements, Like Allowed_domains, Start_urls, Parse Method To Parse Response Object.
Update Pipelines.Py For Further Data Processing.
Lets Start With Items .py first. Below is the code which describes multiple required fields in the framework.
#-*-coding: utf-8-*-

# Define here the models for your scraped items
#
# See documentation in:
# http://doc.scrapy.org/en/latest/topics/items.html

import scrapy

class AmazonItem (scrapy.Item):
# define the fields for your item here like:
product_name = scrapy.Field ()
product_sale_price = scrapy.Field ()
product_category = scrapy.Field ()
product_original_price = scrapy.Field ()
product_availability = scrapy. Field ()
view rawamazon_item hosted with ❤ by GitHub
Now to create Spiders, we can have different options.1
) We can create simple Python class in spiders directory and import essential modules to it
2) We can use default utility which is provided by scrapy Itself Framework.
Here We Are Going To Use The Default Utility Called Genspider To Create Spiders In Framework. It Will Automatically Create A Class With Default Template In Spiders Directory.
scrapy genspider AmazonProductSpider

In newly created AmazonProductSpider, we need to define its name, URLs and possible domains to scrap data.We also need to implement parse method where custom commands can be defined for filling item fields and further processing can be done on the response object. Yield in python means that python will start the execution from where it has been stopped last time.Here
is the code for Spider.A name is defined for Spider, which should be unique throughout all the Spiders, .. Because Scrapy Searches For Spiders Using Its Name Allowed_domains Is Initialized With Amazon.Com As We Are Going To Scrap Data From This Domain And Start_urls Are Pointing To The Specific Pages Of The Same Domain
# - * - Coding: Utf-8 - * -
Import Scrapy
from amazon.items import AmazonItem

class AmazonProductSpider (scrapy.Spider):
name = "AmazonDeals"
allowed_domains = ["amazon.com"]

#Use working product URL below
start_urls = [
"http://www.amazon.com/dp/B0046UR4F4", "http: //www.amazon.com/dp/B00JGTVU5A ",
" http://www.amazon.com/dp/B00O9A48N2 "," http://www.amazon.com/dp/B00UZKG8QU "
]

def parse (self, response):
items = AmazonItem ()
title = response.xpath ('// h1 [@ id = "title"] / span / text ()'). extract ()
sale_price = response.xpath (' // span [contains (@id, "ourprice") or contains (@id, "saleprice")] / text () '). extract ()
category = response.xpath (' // a [@ class = "a -link-normal a-color-tertiary "] / text () '). extract ()
availability = response.xpath (' // div [@ id =" availability "] // text () '). extract ()
items ['product_name'] = '' .join (title) .strip ()
items ['product_sale_price'] = '' .join (sale_price) .strip ()
items ['product_category'] = ','. join (map (lambda x: x.strip (), category)). strip ()
items ['product_availability'] = ''.join (availability) .strip ()
yield items
view rawamazon_parser_scrapy hosted with ❤ by GitHub
In parse method, an item object is defined and is filled with required information using xpath utility of response object.xpath is a search function which is used to find elements in html tree structure.Lastly lets yield the items object, so that scrapy can do Further Processing On It.
Next, After Scraping Data, Scrapy Calls Item Pipelines To Process Them. These Are Called As Pipeline Classes And We Can Use These Classes To Store Data In A File Or Database Or In Any Other Way. It Is A Default Class like Items which scrapy generates for users.
#-*-coding: utf-8-*-
# Define your item pipelines here
# Don't forget to add your pipeline to the ITEM_PIPELINES setting
# See: http: //doc.scrapy. org / en / latest / topics / item-pipeline.html

class AmazonPipeline (object):
def process_item (self, item, spider):
return item
view rawamazon_pipeline hosted with ❤ by GitHub
Pipeline classes implement process_item method which is called each and every time whenever items is being yielded by a Spider. It takes item and spider class as arguments and returns a dict object.So for this example, we are just returning item dict as it
is.Before using pipeline classes one has to enable them in settings.py module so that scrapy can call an item object after parsing from spiders.
# Configure item pipelines
# See http://scrapy.readthedocs.org/en/latest/topics/item-pipeline.html
ITEM_PIPELINES = {
'amazon.pipelines.AmazonPipeline': 300,
}
Rawamazon_pipeline Hosted With View ❤ By GitHub
Let Us Give Numbers From 1-1000 To Pipeline Classes As A Value Which Defines The Order In Which These Classes Will Be Called By Scrapy Framework. This Value Defines Which Pipeline Class Should Be Run First By Scrapy.
Now , After All The Set Up Is Done, We Need To Start Scrapy And Call Spider So That It Can Start Sending Requests And Accept Response Objects.
We Can Call Spider Through Its Name As It Will Be Unique And Scrapy Can Easily Search For It.
Scrapy crawl AmazonDeals

If we want to store item fields in a file then we can write code in pipeline classes else we can define filename at the time of calling the spider so that scrapy can automatically push the return objects from pipeline classes to the given
file.scrapy crawl AmazonDeals -o items.json
So the above command will save the item objects in items.json file.As we are returning item objects in pipeline class, scrapy will automatically store these item objects into items.json. Here is the output of this process.
[
{"product_category": "Electronics, Computers & Accessories, Data Storage, External Hard Drives", "product_sale_price": "$ 949.95", "product_name": "G-Technology G-SPEED eS PRO High-Performance Fail-Safe RAID Solution for HD / 2K Production 8TB (0G01873) "," product_availability ":" Only 1 left in stock. "},
{" Product_category ":" Electronics, Computers & Accessories, Data Storage, USB Flash Drives "," product_sale_price ":" " , "product_name": "G-Technology G-RAID with Removable Drives High-Performance Storage System 4TB (Gen7) (0G03240)", "product_availability": "Available from these sellers."},
{"product_category": "Electronics, Computers & Accessories, Data Storage, USB Flash Drives", "product_sale_price": "$ 549.95", "product_name": "G-Technology G-RAID USB Removable Dual Drive Storage System 8TB (0G04069)" ", product_availability": "Only 1 left in stock."},
{"product_category": "Electronics, Computers & Accessories, Data Storage, External Hard Drives", "product_sale_price": "$ 89.95", "product_name": "G- Technology G-DRIVE ev USB 3.0 Hard Drive 500GB (0G02727) "," product_availability ":" Only 1 left in stock. "}
]
View rawamazon_data_output hosted with ❤ by GitHub 

If you still have confusion regarding the amazon scraping, try the video tutorial prepared by the best video production company .


Ta da! We have successfully covered scraping using scrapy.We have covered most of the stuff related to scrapy and its related modules and also understood how can we can use it independently through an example.Here
are few references which can be helpful in knowing more Scrapy.

Read the original article here:  https://blog.datahut.co/tutorial-how-to-scrape-amazon-data-using-python-scrapy/

この記事が気に入ったらサポートをしてみませんか?