SlideShare a Scribd company logo
1 of 20
Download to read offline
HOWTO SCRAPE
ANY WEBSITE
FOR FUN ;)
by Anton Rifco
anton.rifco@gmail.com
Some pictures taken from internet.
This article possess no copyright. Use it for your own purpose
July 2013
Monday, 15 July, 13
Let’s scrape this :)
Monday, 15 July, 13
Web Scraping,
a process of automatically collecting (stealing?)
information from the Internet
Monday, 15 July, 13
THETOOL
You need these tool to steal (uupss) those data:
Python (2.6 or 2.7) with some packages*
Scrapy** framework
Google Chrome with XPath*** review plugin
Computer, of course
and functional brain
*) http://doc.scrapy.org/en/latest/intro/install.html#requirements
**) refer to http://scrapy.org/ (this slides won’t cover the installation of those things)
***) I use “XPath helper” plugin
Monday, 15 July, 13
S C R A P Y
Not Crappy
Scrapy is an application framework for crawling
web sites and extracting structured data which can be used
for a wide range of useful applications, like data mining,
information processing or historical archival.
Monday, 15 July, 13
S C R A P Y
Not Crappy
Scrapy works by creating logical spiders that will crawl to any
website you like.
You define the logic of that spider, using Python
Scrapy uses a mechanism based on XPath expressions called
XPath selectors.
Monday, 15 July, 13
XPath is W3C standard to navigate through XML document
(so as HTML)
Here, XML documents are treated as trees of nodes.The
topmost element of the tree is called the root element.
For more, refer to: http://www.w3schools.com/xpath/
X P A T H
Monday, 15 July, 13
X P A T H
<?xml version="1.0" encoding="ISO-8859-1"?>
<bookstore>
<book>
<title lang="en">Harry Potter</title>
<author>J K. Rowling</author>
<year>2005</year>
<price>29.99</price>
</book>
</bookstore>
From example of nodes in the XML document above:
<bookstore> (root element node)
<author>J K. Rowling</author> (element node)
lang="en" (attribute node)
For more, refer to: http://www.w3schools.com/xpath/
Monday, 15 July, 13
Selecting Nodes
XPath uses path expressions to select nodes in an XML
document.The node is selected by following a path or steps
For more, refer to: http://www.w3schools.com/xpath/
Expression Result
nodename Selects all nodes with the name “nodename”
/ Do selection from the root
// Do selection from current node
. Select current node
.. Select parent node
@attr Select attributes of nodes
text() Select the value of chosen node
X P A T H
Monday, 15 July, 13
X P A T H
Predicate Expressions
Predicates are used to find a specific node or a node that contains a specific value.
Predicates are always embedded in square brackets.
Expression Result
/bookstore/book[1] Selects the first book element that is the child of the bookstore element.
/bookstore/book[last()] Selects the last book element that is the child of the bookstore element
/bookstore/book[last()-1] Selects the last but one book element that is the child of the bookstore
element
/bookstore/book[position()<3] Selects the first two book elements that are children of the bookstore
element
//title[@lang] Selects all the title elements that have an attribute named lang
//title[@lang='eng'] Selects all the title elements that have an attribute named lang with a value of
'eng'
/bookstore/book[price>35.00] Selects all the book elements of the bookstore element that have a price
element with a value greater than 35.00
Monday, 15 July, 13
X PAT H H E L P E R
By using XPATH Helper, you can easily get the XPath
expression of a given node in HTML doc. It will be enabled by
pressing <Ctrl>+<Shift>+X on Chrome
Monday, 15 July, 13
R E A L A C T I O N
Create Scrapy Comesg project
> scrapy startproject comesg
Then, it will create the following project directory structure
comesg/ /* This is Project root */
scrapy.cfg /* Project config file */
comesg/
__init__.py
items.py /* Definition of Items to scrap */
pipelines.py /* Pipeline config for advance use*/
settings.py /* Advance setting file */
spiders/ /* Directory to put spiders file */
__init__.py
...
Monday, 15 July, 13
R E A L A C T I O N
Define the Information Items that we want to scrap
Click any of place, will open its details
So, of all those data, we want to collect:
name of places,
photo,
description,
address (if any), contact number (if any), opening hours (if any),
website (if any), and video (if any)
Monday, 15 July, 13
from scrapy.item import Item, Field
class ComesgItem(Item):
# define the fields for your item here like:
name = Field()
photo = Field()
desc = Field()
address = Field()
contact = Field()
hours = Field()
website = Field()
video = Field()
On items.py, write the following:
I t e m s D e f i n i t i o n
Monday, 15 July, 13
R E A L A C T I O N
Basically, here is our strategy
1. Implements first spider that will get
url of the listed items
2. Crawl to that url one by one
3. Implements second spider that will
fetch all the required data
Monday, 15 July, 13
class AttractionSpider(CrawlSpider):
! name = "get-attraction"
! allowed_domains = ["comesingapore.com"] ## Will never go outside playground
! start_urls = [ ## Starting URL
! ! "http://comesingapore.com/travel-guide/category/285/attractions"
! ]
! rules = ()
! def __init__(self, name=None, **kwargs):
! ! super(AttractionSpider, self).__init__(name, **kwargs)
! ! self.items_buffer = {}
! ! self.base_url = "http://comesingapore.com"
! ! from scrapy.conf import settings
! ! settings.overrides['DOWNLOAD_TIMEOUT'] = 360 ## prevent too early timeout
! def parse(self, response):
! ! print "Start scrapping Attractions...."
! ! try:
! ! ! hxs = HtmlXPathSelector(response)
## XPath expression to get the URL of item details
! ! ! links = hxs.select("//*[@id='content']//a[@style='color:black']/@href")
! ! !
! ! ! if not links:
! ! ! ! return
! ! ! ! log.msg("No Data to scrap")
! ! ! for link in links:
! ! ! ! v_url = ''.join( link.extract() )
! ! ! ! ! ! ! !
! ! ! ! if not v_url:
! ! ! ! ! continue
! ! ! ! else: ## If valid URL, continue crawl those URL
! ! ! ! ! _url = self.base_url + v_url
## real work handled by second spider
! ! ! ! ! yield Request( url= _url, callback=self.parse_details )
! ! except Exception as e:
! ! ! log.msg("Parsing failed for URL {%s}"%format(response.request.url))
F i r s t s p i d e r
Monday, 15 July, 13
def parse_details(self, response):
! ! print "Start scrapping Detailed Info...."
! ! try:
! ! ! hxs = HtmlXPathSelector(response)
! ! ! l_venue = ComesgItem()
! ! ! v_name = hxs.select("/html/body/div[@id='wrapper']/div[@id='page']/div[@id='page-bgtop']/div[@id='page-bgbtm']/
div[@id='content']/div[3]/h1/text()").extract()
! ! ! if not v_name:
! ! ! ! v_name = hxs.select("/html/body/div[@id='wrapper']/div[@id='page']/div[@id='page-bgtop']/div[@id='page-
bgbtm']/div[@id='content']/div[2]/h1/text()").extract()
! ! !
! ! ! l_venue["name"] = v_name[0].strip()
! ! !
! ! ! base = hxs.select("//*[@id='content']/div[7]")
! ! ! if base.extract()[0].strip() == "<div style="clear:both"></div>":
! ! ! ! base = hxs.select("//*[@id='content']/div[8]")
! ! ! elif base.extract()[0].strip() == "<div style="padding-top:10px;margin-top:10px;border-top:1px dotted #DDD;">n
You must be logged in to add a tipn </div>":
! ! ! ! base = hxs.select("//*[@id='content']/div[6]")
! ! ! x_datas = base.select("div[1]/b").extract()
! ! ! v_datas = base.select("div[1]/text()").extract()
! ! ! i_d = 0;
! ! ! if x_datas:
! ! ! ! for x_data in x_datas:
! ! ! ! ! print "data is:" + x_data.strip()
! ! ! ! ! if x_data.strip() == "<b>Address:</b>":
! ! ! ! ! ! l_venue["address"] = v_datas[i_d].strip()
! ! ! ! ! if x_data.strip() == "<b>Contact:</b>":
! ! ! ! ! ! l_venue["contact"] = v_datas[i_d].strip()
! ! ! ! ! if x_data.strip() == "<b>Operating Hours:</b>":
! ! ! ! ! ! l_venue["hours"] = v_datas[i_d].strip()
! ! ! ! ! if x_data.strip() == "<b>Website:</b>":
! ! ! ! ! ! l_venue["website"] = (base.select("div[1]/a/@href").extract())[0].strip()
! ! ! ! ! i_d += 1
! ! ! !
! ! ! v_photo = base.select("img/@src").extract()
! ! ! if v_photo:
! ! ! ! l_venue["photo"] = v_photo[0].strip()
! ! ! v_desc = base.select("div[3]/text()").extract()
! ! ! if v_desc:
! ! ! ! desc = ""
! ! ! ! for dsc in v_desc:
! ! ! ! ! desc += dsc
! ! ! ! l_venue["desc"] = desc.strip()
S e c o n d s p i d e r
Monday, 15 July, 13
R E A L A C T I O N
Run the Project
> scrapy crawl get-attraction -t csv -o attr.csv
In the end, it produces file attr.csv with the scraped data,
like following:
> head -3 attr.csv
website,name,photo,hours,contact,video,address,desc
http://www.tigerlive.com.sg,TigerLIVE,http://tn.comesingapore.com/img/others/240x240/f/6/0000246.jpg,Daily
from 11am to 8pm (Last admission at 6.30pm).,(+65) 6270 7676,,"St. James Power Station, 3 Sentosa Gateway,
Singapore 098544",
http://www.zoo.com.sg,Singapore Zoo,http://tn.comesingapore.com/img/others/240x240/6/2/0000098.jpg,Daily
from 8.30am - 6pm (Last ticket sale at 5.30pm),(+65) 6269 3411,http://www.youtube.com/embed/p4jgx4yNY9I,"80
Mandai Lake Road, Singapore 729826","See exotic and endangered animals up close in their natural habitats in
the . Voted the best attraction in Singapore on Trip Advisor, and considered one of the best zoos in the
world, this attraction is a must see, housing over 2500 mammals, birds and reptiles.
Monday, 15 July, 13
Get the complete Project code @
https://github.com/antonrifco/comesg
Monday, 15 July, 13
THANKYOU!
- Anton -
Monday, 15 July, 13

More Related Content

What's hot

Web scraping 1 2-3 with python + scrapy (Summer BarCampHK 2012 version)
Web scraping 1 2-3 with python + scrapy (Summer BarCampHK 2012 version)Web scraping 1 2-3 with python + scrapy (Summer BarCampHK 2012 version)
Web scraping 1 2-3 with python + scrapy (Summer BarCampHK 2012 version)Sammy Fung
 
Assumptions: Check yo'self before you wreck yourself
Assumptions: Check yo'self before you wreck yourselfAssumptions: Check yo'self before you wreck yourself
Assumptions: Check yo'self before you wreck yourselfErin Shellman
 
Open Hack London - Introduction to YQL
Open Hack London - Introduction to YQLOpen Hack London - Introduction to YQL
Open Hack London - Introduction to YQLChristian Heilmann
 
Using YQL Sensibly - YUIConf 2010
Using YQL Sensibly - YUIConf 2010Using YQL Sensibly - YUIConf 2010
Using YQL Sensibly - YUIConf 2010Christian Heilmann
 
Things you can use (by the Yahoo Developer Network and friends)
Things you can use (by the Yahoo Developer Network and friends)Things you can use (by the Yahoo Developer Network and friends)
Things you can use (by the Yahoo Developer Network and friends)Christian Heilmann
 
Cross Domain Web
Mashups with JQuery and Google App Engine
Cross Domain Web
Mashups with JQuery and Google App EngineCross Domain Web
Mashups with JQuery and Google App Engine
Cross Domain Web
Mashups with JQuery and Google App EngineAndy McKay
 
solving little problems
solving little problemssolving little problems
solving little problemsAustin Ziegler
 
Hd insight programming
Hd insight programmingHd insight programming
Hd insight programmingCasear Chu
 
Undercover Pods / WP Functions
Undercover Pods / WP FunctionsUndercover Pods / WP Functions
Undercover Pods / WP Functionspodsframework
 
Grails 1.2 探検隊 -新たな聖杯をもとめて・・・-
Grails 1.2 探検隊 -新たな聖杯をもとめて・・・-Grails 1.2 探検隊 -新たな聖杯をもとめて・・・-
Grails 1.2 探検隊 -新たな聖杯をもとめて・・・-Tsuyoshi Yamamoto
 
PuppetDB, Puppet Explorer and puppetdbquery
PuppetDB, Puppet Explorer and puppetdbqueryPuppetDB, Puppet Explorer and puppetdbquery
PuppetDB, Puppet Explorer and puppetdbqueryPuppet
 
Create responsive websites with Django, REST and AngularJS
Create responsive websites with Django, REST and AngularJSCreate responsive websites with Django, REST and AngularJS
Create responsive websites with Django, REST and AngularJSHannes Hapke
 
Introduction to the Pods JSON API
Introduction to the Pods JSON APIIntroduction to the Pods JSON API
Introduction to the Pods JSON APIpodsframework
 
Django - 次の一歩 gumiStudy#3
Django - 次の一歩 gumiStudy#3Django - 次の一歩 gumiStudy#3
Django - 次の一歩 gumiStudy#3makoto tsuyuki
 

What's hot (20)

Pydata-Python tools for webscraping
Pydata-Python tools for webscrapingPydata-Python tools for webscraping
Pydata-Python tools for webscraping
 
Selenium&amp;scrapy
Selenium&amp;scrapySelenium&amp;scrapy
Selenium&amp;scrapy
 
Web scraping 1 2-3 with python + scrapy (Summer BarCampHK 2012 version)
Web scraping 1 2-3 with python + scrapy (Summer BarCampHK 2012 version)Web scraping 1 2-3 with python + scrapy (Summer BarCampHK 2012 version)
Web scraping 1 2-3 with python + scrapy (Summer BarCampHK 2012 version)
 
Assumptions: Check yo'self before you wreck yourself
Assumptions: Check yo'self before you wreck yourselfAssumptions: Check yo'self before you wreck yourself
Assumptions: Check yo'self before you wreck yourself
 
Webscraping with asyncio
Webscraping with asyncioWebscraping with asyncio
Webscraping with asyncio
 
Django
DjangoDjango
Django
 
CouchDB Day NYC 2017: MapReduce Views
CouchDB Day NYC 2017: MapReduce ViewsCouchDB Day NYC 2017: MapReduce Views
CouchDB Day NYC 2017: MapReduce Views
 
Open Hack London - Introduction to YQL
Open Hack London - Introduction to YQLOpen Hack London - Introduction to YQL
Open Hack London - Introduction to YQL
 
Routing @ Scuk.cz
Routing @ Scuk.czRouting @ Scuk.cz
Routing @ Scuk.cz
 
Using YQL Sensibly - YUIConf 2010
Using YQL Sensibly - YUIConf 2010Using YQL Sensibly - YUIConf 2010
Using YQL Sensibly - YUIConf 2010
 
Things you can use (by the Yahoo Developer Network and friends)
Things you can use (by the Yahoo Developer Network and friends)Things you can use (by the Yahoo Developer Network and friends)
Things you can use (by the Yahoo Developer Network and friends)
 
Cross Domain Web
Mashups with JQuery and Google App Engine
Cross Domain Web
Mashups with JQuery and Google App EngineCross Domain Web
Mashups with JQuery and Google App Engine
Cross Domain Web
Mashups with JQuery and Google App Engine
 
solving little problems
solving little problemssolving little problems
solving little problems
 
Hd insight programming
Hd insight programmingHd insight programming
Hd insight programming
 
Undercover Pods / WP Functions
Undercover Pods / WP FunctionsUndercover Pods / WP Functions
Undercover Pods / WP Functions
 
Grails 1.2 探検隊 -新たな聖杯をもとめて・・・-
Grails 1.2 探検隊 -新たな聖杯をもとめて・・・-Grails 1.2 探検隊 -新たな聖杯をもとめて・・・-
Grails 1.2 探検隊 -新たな聖杯をもとめて・・・-
 
PuppetDB, Puppet Explorer and puppetdbquery
PuppetDB, Puppet Explorer and puppetdbqueryPuppetDB, Puppet Explorer and puppetdbquery
PuppetDB, Puppet Explorer and puppetdbquery
 
Create responsive websites with Django, REST and AngularJS
Create responsive websites with Django, REST and AngularJSCreate responsive websites with Django, REST and AngularJS
Create responsive websites with Django, REST and AngularJS
 
Introduction to the Pods JSON API
Introduction to the Pods JSON APIIntroduction to the Pods JSON API
Introduction to the Pods JSON API
 
Django - 次の一歩 gumiStudy#3
Django - 次の一歩 gumiStudy#3Django - 次の一歩 gumiStudy#3
Django - 次の一歩 gumiStudy#3
 

Similar to How to Scrap Any Website's content using ScrapyTutorial of How to scrape (crawling) website's content using Scrapy Python

Rotzy - Building an iPhone Photo Sharing App on Google App Engine
Rotzy - Building an iPhone Photo Sharing App on Google App EngineRotzy - Building an iPhone Photo Sharing App on Google App Engine
Rotzy - Building an iPhone Photo Sharing App on Google App Enginegeehwan
 
#NewMeetup Performance
#NewMeetup Performance#NewMeetup Performance
#NewMeetup PerformanceJustin Cataldo
 
Maintainable JavaScript 2011
Maintainable JavaScript 2011Maintainable JavaScript 2011
Maintainable JavaScript 2011Nicholas Zakas
 
NetPonto - The Future Of C# - NetConf Edition
NetPonto - The Future Of C# - NetConf EditionNetPonto - The Future Of C# - NetConf Edition
NetPonto - The Future Of C# - NetConf EditionPaulo Morgado
 
RubyMotion
RubyMotionRubyMotion
RubyMotionMark
 
Your Library Sucks, and why you should use it.
Your Library Sucks, and why you should use it.Your Library Sucks, and why you should use it.
Your Library Sucks, and why you should use it.Peter Higgins
 
Tuga IT 2018 Summer Edition - The Future of C#
Tuga IT 2018 Summer Edition - The Future of C#Tuga IT 2018 Summer Edition - The Future of C#
Tuga IT 2018 Summer Edition - The Future of C#Paulo Morgado
 
Maintainable JavaScript 2012
Maintainable JavaScript 2012Maintainable JavaScript 2012
Maintainable JavaScript 2012Nicholas Zakas
 
Fixture Replacement Plugins
Fixture Replacement PluginsFixture Replacement Plugins
Fixture Replacement PluginsPaul Klipp
 
Mobile App Development: Primi passi con NativeScript e Angular 2
Mobile App Development: Primi passi con NativeScript e Angular 2Mobile App Development: Primi passi con NativeScript e Angular 2
Mobile App Development: Primi passi con NativeScript e Angular 2Filippo Matteo Riggio
 
Use Web Skills To Build Mobile Apps
Use Web Skills To Build Mobile AppsUse Web Skills To Build Mobile Apps
Use Web Skills To Build Mobile AppsNathan Smith
 
Great Developers Steal
Great Developers StealGreat Developers Steal
Great Developers StealBen Scofield
 
Using HTML5 for a great Open Web
Using HTML5 for a great Open WebUsing HTML5 for a great Open Web
Using HTML5 for a great Open WebRobert Nyman
 

Similar to How to Scrap Any Website's content using ScrapyTutorial of How to scrape (crawling) website's content using Scrapy Python (20)

Rotzy - Building an iPhone Photo Sharing App on Google App Engine
Rotzy - Building an iPhone Photo Sharing App on Google App EngineRotzy - Building an iPhone Photo Sharing App on Google App Engine
Rotzy - Building an iPhone Photo Sharing App on Google App Engine
 
#NewMeetup Performance
#NewMeetup Performance#NewMeetup Performance
#NewMeetup Performance
 
dojo.Patterns
dojo.Patternsdojo.Patterns
dojo.Patterns
 
Maintainable JavaScript 2011
Maintainable JavaScript 2011Maintainable JavaScript 2011
Maintainable JavaScript 2011
 
JavaScript ES6
JavaScript ES6JavaScript ES6
JavaScript ES6
 
NetPonto - The Future Of C# - NetConf Edition
NetPonto - The Future Of C# - NetConf EditionNetPonto - The Future Of C# - NetConf Edition
NetPonto - The Future Of C# - NetConf Edition
 
RubyMotion
RubyMotionRubyMotion
RubyMotion
 
JQuery Flot
JQuery FlotJQuery Flot
JQuery Flot
 
Demystifying Maven
Demystifying MavenDemystifying Maven
Demystifying Maven
 
Your Library Sucks, and why you should use it.
Your Library Sucks, and why you should use it.Your Library Sucks, and why you should use it.
Your Library Sucks, and why you should use it.
 
Tuga IT 2018 Summer Edition - The Future of C#
Tuga IT 2018 Summer Edition - The Future of C#Tuga IT 2018 Summer Edition - The Future of C#
Tuga IT 2018 Summer Edition - The Future of C#
 
Maintainable JavaScript 2012
Maintainable JavaScript 2012Maintainable JavaScript 2012
Maintainable JavaScript 2012
 
Fixture Replacement Plugins
Fixture Replacement PluginsFixture Replacement Plugins
Fixture Replacement Plugins
 
Yahoo is open to developers
Yahoo is open to developersYahoo is open to developers
Yahoo is open to developers
 
Mobile App Development: Primi passi con NativeScript e Angular 2
Mobile App Development: Primi passi con NativeScript e Angular 2Mobile App Development: Primi passi con NativeScript e Angular 2
Mobile App Development: Primi passi con NativeScript e Angular 2
 
Use Web Skills To Build Mobile Apps
Use Web Skills To Build Mobile AppsUse Web Skills To Build Mobile Apps
Use Web Skills To Build Mobile Apps
 
IT6801-Service Oriented Architecture-Unit-2-notes
IT6801-Service Oriented Architecture-Unit-2-notesIT6801-Service Oriented Architecture-Unit-2-notes
IT6801-Service Oriented Architecture-Unit-2-notes
 
Great Developers Steal
Great Developers StealGreat Developers Steal
Great Developers Steal
 
Using HTML5 for a great Open Web
Using HTML5 for a great Open WebUsing HTML5 for a great Open Web
Using HTML5 for a great Open Web
 
Sprockets
SprocketsSprockets
Sprockets
 

More from Anton

Growth Hack - How to Boost Business Metrics Significantly
Growth Hack - How to Boost Business Metrics SignificantlyGrowth Hack - How to Boost Business Metrics Significantly
Growth Hack - How to Boost Business Metrics SignificantlyAnton
 
Getourguide Airlines Partnership
Getourguide Airlines PartnershipGetourguide Airlines Partnership
Getourguide Airlines PartnershipAnton
 
Scrum!
Scrum!Scrum!
Scrum!Anton
 
Telco payment for startup companies
Telco payment for startup companiesTelco payment for startup companies
Telco payment for startup companiesAnton
 
Business on-the-move
Business on-the-moveBusiness on-the-move
Business on-the-moveAnton
 
Business on-the-move
Business on-the-moveBusiness on-the-move
Business on-the-moveAnton
 
Single Identity Number dengan Apache Cassandra
Single Identity Number dengan Apache CassandraSingle Identity Number dengan Apache Cassandra
Single Identity Number dengan Apache CassandraAnton
 
Single Identity Number dengan Apache Cassandra
Single Identity Number dengan Apache CassandraSingle Identity Number dengan Apache Cassandra
Single Identity Number dengan Apache CassandraAnton
 

More from Anton (8)

Growth Hack - How to Boost Business Metrics Significantly
Growth Hack - How to Boost Business Metrics SignificantlyGrowth Hack - How to Boost Business Metrics Significantly
Growth Hack - How to Boost Business Metrics Significantly
 
Getourguide Airlines Partnership
Getourguide Airlines PartnershipGetourguide Airlines Partnership
Getourguide Airlines Partnership
 
Scrum!
Scrum!Scrum!
Scrum!
 
Telco payment for startup companies
Telco payment for startup companiesTelco payment for startup companies
Telco payment for startup companies
 
Business on-the-move
Business on-the-moveBusiness on-the-move
Business on-the-move
 
Business on-the-move
Business on-the-moveBusiness on-the-move
Business on-the-move
 
Single Identity Number dengan Apache Cassandra
Single Identity Number dengan Apache CassandraSingle Identity Number dengan Apache Cassandra
Single Identity Number dengan Apache Cassandra
 
Single Identity Number dengan Apache Cassandra
Single Identity Number dengan Apache CassandraSingle Identity Number dengan Apache Cassandra
Single Identity Number dengan Apache Cassandra
 

Recently uploaded

南新罕布什尔大学毕业证学位证成绩单-学历认证
南新罕布什尔大学毕业证学位证成绩单-学历认证南新罕布什尔大学毕业证学位证成绩单-学历认证
南新罕布什尔大学毕业证学位证成绩单-学历认证kbdhl05e
 
E J Waggoner against Kellogg's Pantheism 8.pptx
E J Waggoner against Kellogg's Pantheism 8.pptxE J Waggoner against Kellogg's Pantheism 8.pptx
E J Waggoner against Kellogg's Pantheism 8.pptxJackieSparrow3
 
(南达科他州立大学毕业证学位证成绩单-永久存档)
(南达科他州立大学毕业证学位证成绩单-永久存档)(南达科他州立大学毕业证学位证成绩单-永久存档)
(南达科他州立大学毕业证学位证成绩单-永久存档)oannq
 
Module-2-Lesson-2-COMMUNICATION-AIDS-AND-STRATEGIES-USING-TOOLS-OF-TECHNOLOGY...
Module-2-Lesson-2-COMMUNICATION-AIDS-AND-STRATEGIES-USING-TOOLS-OF-TECHNOLOGY...Module-2-Lesson-2-COMMUNICATION-AIDS-AND-STRATEGIES-USING-TOOLS-OF-TECHNOLOGY...
Module-2-Lesson-2-COMMUNICATION-AIDS-AND-STRATEGIES-USING-TOOLS-OF-TECHNOLOGY...JeylaisaManabat1
 
Inspiring Through Words Power of Inspiration.pptx
Inspiring Through Words Power of Inspiration.pptxInspiring Through Words Power of Inspiration.pptx
Inspiring Through Words Power of Inspiration.pptxShubham Rawat
 
Authentic No 1 Amil Baba In Pakistan Amil Baba In Faisalabad Amil Baba In Kar...
Authentic No 1 Amil Baba In Pakistan Amil Baba In Faisalabad Amil Baba In Kar...Authentic No 1 Amil Baba In Pakistan Amil Baba In Faisalabad Amil Baba In Kar...
Authentic No 1 Amil Baba In Pakistan Amil Baba In Faisalabad Amil Baba In Kar...Authentic No 1 Amil Baba In Pakistan
 

Recently uploaded (6)

南新罕布什尔大学毕业证学位证成绩单-学历认证
南新罕布什尔大学毕业证学位证成绩单-学历认证南新罕布什尔大学毕业证学位证成绩单-学历认证
南新罕布什尔大学毕业证学位证成绩单-学历认证
 
E J Waggoner against Kellogg's Pantheism 8.pptx
E J Waggoner against Kellogg's Pantheism 8.pptxE J Waggoner against Kellogg's Pantheism 8.pptx
E J Waggoner against Kellogg's Pantheism 8.pptx
 
(南达科他州立大学毕业证学位证成绩单-永久存档)
(南达科他州立大学毕业证学位证成绩单-永久存档)(南达科他州立大学毕业证学位证成绩单-永久存档)
(南达科他州立大学毕业证学位证成绩单-永久存档)
 
Module-2-Lesson-2-COMMUNICATION-AIDS-AND-STRATEGIES-USING-TOOLS-OF-TECHNOLOGY...
Module-2-Lesson-2-COMMUNICATION-AIDS-AND-STRATEGIES-USING-TOOLS-OF-TECHNOLOGY...Module-2-Lesson-2-COMMUNICATION-AIDS-AND-STRATEGIES-USING-TOOLS-OF-TECHNOLOGY...
Module-2-Lesson-2-COMMUNICATION-AIDS-AND-STRATEGIES-USING-TOOLS-OF-TECHNOLOGY...
 
Inspiring Through Words Power of Inspiration.pptx
Inspiring Through Words Power of Inspiration.pptxInspiring Through Words Power of Inspiration.pptx
Inspiring Through Words Power of Inspiration.pptx
 
Authentic No 1 Amil Baba In Pakistan Amil Baba In Faisalabad Amil Baba In Kar...
Authentic No 1 Amil Baba In Pakistan Amil Baba In Faisalabad Amil Baba In Kar...Authentic No 1 Amil Baba In Pakistan Amil Baba In Faisalabad Amil Baba In Kar...
Authentic No 1 Amil Baba In Pakistan Amil Baba In Faisalabad Amil Baba In Kar...
 

How to Scrap Any Website's content using ScrapyTutorial of How to scrape (crawling) website's content using Scrapy Python

  • 1. HOWTO SCRAPE ANY WEBSITE FOR FUN ;) by Anton Rifco anton.rifco@gmail.com Some pictures taken from internet. This article possess no copyright. Use it for your own purpose July 2013 Monday, 15 July, 13
  • 2. Let’s scrape this :) Monday, 15 July, 13
  • 3. Web Scraping, a process of automatically collecting (stealing?) information from the Internet Monday, 15 July, 13
  • 4. THETOOL You need these tool to steal (uupss) those data: Python (2.6 or 2.7) with some packages* Scrapy** framework Google Chrome with XPath*** review plugin Computer, of course and functional brain *) http://doc.scrapy.org/en/latest/intro/install.html#requirements **) refer to http://scrapy.org/ (this slides won’t cover the installation of those things) ***) I use “XPath helper” plugin Monday, 15 July, 13
  • 5. S C R A P Y Not Crappy Scrapy is an application framework for crawling web sites and extracting structured data which can be used for a wide range of useful applications, like data mining, information processing or historical archival. Monday, 15 July, 13
  • 6. S C R A P Y Not Crappy Scrapy works by creating logical spiders that will crawl to any website you like. You define the logic of that spider, using Python Scrapy uses a mechanism based on XPath expressions called XPath selectors. Monday, 15 July, 13
  • 7. XPath is W3C standard to navigate through XML document (so as HTML) Here, XML documents are treated as trees of nodes.The topmost element of the tree is called the root element. For more, refer to: http://www.w3schools.com/xpath/ X P A T H Monday, 15 July, 13
  • 8. X P A T H <?xml version="1.0" encoding="ISO-8859-1"?> <bookstore> <book> <title lang="en">Harry Potter</title> <author>J K. Rowling</author> <year>2005</year> <price>29.99</price> </book> </bookstore> From example of nodes in the XML document above: <bookstore> (root element node) <author>J K. Rowling</author> (element node) lang="en" (attribute node) For more, refer to: http://www.w3schools.com/xpath/ Monday, 15 July, 13
  • 9. Selecting Nodes XPath uses path expressions to select nodes in an XML document.The node is selected by following a path or steps For more, refer to: http://www.w3schools.com/xpath/ Expression Result nodename Selects all nodes with the name “nodename” / Do selection from the root // Do selection from current node . Select current node .. Select parent node @attr Select attributes of nodes text() Select the value of chosen node X P A T H Monday, 15 July, 13
  • 10. X P A T H Predicate Expressions Predicates are used to find a specific node or a node that contains a specific value. Predicates are always embedded in square brackets. Expression Result /bookstore/book[1] Selects the first book element that is the child of the bookstore element. /bookstore/book[last()] Selects the last book element that is the child of the bookstore element /bookstore/book[last()-1] Selects the last but one book element that is the child of the bookstore element /bookstore/book[position()<3] Selects the first two book elements that are children of the bookstore element //title[@lang] Selects all the title elements that have an attribute named lang //title[@lang='eng'] Selects all the title elements that have an attribute named lang with a value of 'eng' /bookstore/book[price>35.00] Selects all the book elements of the bookstore element that have a price element with a value greater than 35.00 Monday, 15 July, 13
  • 11. X PAT H H E L P E R By using XPATH Helper, you can easily get the XPath expression of a given node in HTML doc. It will be enabled by pressing <Ctrl>+<Shift>+X on Chrome Monday, 15 July, 13
  • 12. R E A L A C T I O N Create Scrapy Comesg project > scrapy startproject comesg Then, it will create the following project directory structure comesg/ /* This is Project root */ scrapy.cfg /* Project config file */ comesg/ __init__.py items.py /* Definition of Items to scrap */ pipelines.py /* Pipeline config for advance use*/ settings.py /* Advance setting file */ spiders/ /* Directory to put spiders file */ __init__.py ... Monday, 15 July, 13
  • 13. R E A L A C T I O N Define the Information Items that we want to scrap Click any of place, will open its details So, of all those data, we want to collect: name of places, photo, description, address (if any), contact number (if any), opening hours (if any), website (if any), and video (if any) Monday, 15 July, 13
  • 14. from scrapy.item import Item, Field class ComesgItem(Item): # define the fields for your item here like: name = Field() photo = Field() desc = Field() address = Field() contact = Field() hours = Field() website = Field() video = Field() On items.py, write the following: I t e m s D e f i n i t i o n Monday, 15 July, 13
  • 15. R E A L A C T I O N Basically, here is our strategy 1. Implements first spider that will get url of the listed items 2. Crawl to that url one by one 3. Implements second spider that will fetch all the required data Monday, 15 July, 13
  • 16. class AttractionSpider(CrawlSpider): ! name = "get-attraction" ! allowed_domains = ["comesingapore.com"] ## Will never go outside playground ! start_urls = [ ## Starting URL ! ! "http://comesingapore.com/travel-guide/category/285/attractions" ! ] ! rules = () ! def __init__(self, name=None, **kwargs): ! ! super(AttractionSpider, self).__init__(name, **kwargs) ! ! self.items_buffer = {} ! ! self.base_url = "http://comesingapore.com" ! ! from scrapy.conf import settings ! ! settings.overrides['DOWNLOAD_TIMEOUT'] = 360 ## prevent too early timeout ! def parse(self, response): ! ! print "Start scrapping Attractions...." ! ! try: ! ! ! hxs = HtmlXPathSelector(response) ## XPath expression to get the URL of item details ! ! ! links = hxs.select("//*[@id='content']//a[@style='color:black']/@href") ! ! ! ! ! ! if not links: ! ! ! ! return ! ! ! ! log.msg("No Data to scrap") ! ! ! for link in links: ! ! ! ! v_url = ''.join( link.extract() ) ! ! ! ! ! ! ! ! ! ! ! ! if not v_url: ! ! ! ! ! continue ! ! ! ! else: ## If valid URL, continue crawl those URL ! ! ! ! ! _url = self.base_url + v_url ## real work handled by second spider ! ! ! ! ! yield Request( url= _url, callback=self.parse_details ) ! ! except Exception as e: ! ! ! log.msg("Parsing failed for URL {%s}"%format(response.request.url)) F i r s t s p i d e r Monday, 15 July, 13
  • 17. def parse_details(self, response): ! ! print "Start scrapping Detailed Info...." ! ! try: ! ! ! hxs = HtmlXPathSelector(response) ! ! ! l_venue = ComesgItem() ! ! ! v_name = hxs.select("/html/body/div[@id='wrapper']/div[@id='page']/div[@id='page-bgtop']/div[@id='page-bgbtm']/ div[@id='content']/div[3]/h1/text()").extract() ! ! ! if not v_name: ! ! ! ! v_name = hxs.select("/html/body/div[@id='wrapper']/div[@id='page']/div[@id='page-bgtop']/div[@id='page- bgbtm']/div[@id='content']/div[2]/h1/text()").extract() ! ! ! ! ! ! l_venue["name"] = v_name[0].strip() ! ! ! ! ! ! base = hxs.select("//*[@id='content']/div[7]") ! ! ! if base.extract()[0].strip() == "<div style="clear:both"></div>": ! ! ! ! base = hxs.select("//*[@id='content']/div[8]") ! ! ! elif base.extract()[0].strip() == "<div style="padding-top:10px;margin-top:10px;border-top:1px dotted #DDD;">n You must be logged in to add a tipn </div>": ! ! ! ! base = hxs.select("//*[@id='content']/div[6]") ! ! ! x_datas = base.select("div[1]/b").extract() ! ! ! v_datas = base.select("div[1]/text()").extract() ! ! ! i_d = 0; ! ! ! if x_datas: ! ! ! ! for x_data in x_datas: ! ! ! ! ! print "data is:" + x_data.strip() ! ! ! ! ! if x_data.strip() == "<b>Address:</b>": ! ! ! ! ! ! l_venue["address"] = v_datas[i_d].strip() ! ! ! ! ! if x_data.strip() == "<b>Contact:</b>": ! ! ! ! ! ! l_venue["contact"] = v_datas[i_d].strip() ! ! ! ! ! if x_data.strip() == "<b>Operating Hours:</b>": ! ! ! ! ! ! l_venue["hours"] = v_datas[i_d].strip() ! ! ! ! ! if x_data.strip() == "<b>Website:</b>": ! ! ! ! ! ! l_venue["website"] = (base.select("div[1]/a/@href").extract())[0].strip() ! ! ! ! ! i_d += 1 ! ! ! ! ! ! ! v_photo = base.select("img/@src").extract() ! ! ! if v_photo: ! ! ! ! l_venue["photo"] = v_photo[0].strip() ! ! ! v_desc = base.select("div[3]/text()").extract() ! ! ! if v_desc: ! ! ! ! desc = "" ! ! ! ! for dsc in v_desc: ! ! ! ! ! desc += dsc ! ! ! ! l_venue["desc"] = desc.strip() S e c o n d s p i d e r Monday, 15 July, 13
  • 18. R E A L A C T I O N Run the Project > scrapy crawl get-attraction -t csv -o attr.csv In the end, it produces file attr.csv with the scraped data, like following: > head -3 attr.csv website,name,photo,hours,contact,video,address,desc http://www.tigerlive.com.sg,TigerLIVE,http://tn.comesingapore.com/img/others/240x240/f/6/0000246.jpg,Daily from 11am to 8pm (Last admission at 6.30pm).,(+65) 6270 7676,,"St. James Power Station, 3 Sentosa Gateway, Singapore 098544", http://www.zoo.com.sg,Singapore Zoo,http://tn.comesingapore.com/img/others/240x240/6/2/0000098.jpg,Daily from 8.30am - 6pm (Last ticket sale at 5.30pm),(+65) 6269 3411,http://www.youtube.com/embed/p4jgx4yNY9I,"80 Mandai Lake Road, Singapore 729826","See exotic and endangered animals up close in their natural habitats in the . Voted the best attraction in Singapore on Trip Advisor, and considered one of the best zoos in the world, this attraction is a must see, housing over 2500 mammals, birds and reptiles. Monday, 15 July, 13
  • 19. Get the complete Project code @ https://github.com/antonrifco/comesg Monday, 15 July, 13