crawler vs scraper

37,167

Solution 1

A crawler gets web pages -- i.e., given a starting address (or set of starting addresses) and some conditions (e.g., how many links deep to go, types of files to ignore) it downloads whatever is linked to from the starting point(s).

A scraper takes pages that have been downloaded or, in a more general sense, data that's formatted for display, and (attempts to) extract data from those pages, so that it can (for example) be stored in a database and manipulated as desired.

Depending on how you use the result, scraping may well violate the rights of the owner of the information and/or user agreements about use of web sites (crawling violates the latter in some cases as well). Many sites include a file named robots.txt in their root (i.e. having the URL http://server/robots.txt) to specify how (and if) crawlers should treat that site -- in particular, it can list (partial) URLs that a crawler should not attempt to visit. These can be specified separately per crawler (user-agent) if desired.

Solution 2

Crawlers surf the web, following links. An example would be the Google robot that gets pages to index. Scrapers extract values from forms, but don't necessarily have anything to do with the web.

Solution 3

Web crawler gets links (Urls - Pages) in a logic and scraper get values (extracting) from HTML.

There are so many web crawler tools. Visit page to see some. Any XML - HTML parser can used to extract (scrape) data from crawled pages. (I recommend Jsoup for parsing and extracting data)

Solution 4

Generally, crawlers would follow the links to reach numerous pages while scrapers is, in some sense, just pulling the contents displayed online and would not reach the deeper links.

The most typical crawler is google bots, which would follow the links to reach all the web pages on your website and would index the contents if they found it useful(that's why you need robots.txt to tell which contents you do not want to be indexed). So we could search such kind of contents on its website. While the purpose of scrapers is just to pull the contents for personal uses and would not have much effects on others.

However, there's no distinct difference about crawlers and scrapers now as some automated web scraping tools also allow you to crawl the website by following the links, like Octoparse and import.io. They are not the crawlers like google bots, but they are able to automatically crawl the websites to get numerous data without coding.

Share:
37,167
Nayn
Author by

Nayn

I am working as Software Development Engineer in Amazon.com I work with crawlers. I recently developed interest with applications for mobile devices and getting my hands dirty with Android.

Updated on July 05, 2022

Comments

  • Nayn
    Nayn almost 2 years

    Can somebody distinguish between a crawler and scraper in terms of scope and functionality.

  • BC.
    BC. almost 14 years
    Scrapers extract values from HTML, not necessarily forms.
  • Steven Sudit
    Steven Sudit almost 14 years
    Scrapers extract value from screens, not necessarily HTML. For example, I once used a scraper to extract values from old mainframe forms.
  • Henley
    Henley over 11 years
    I can't give Google a free pass on this. Google is a crawler, yes, but ALSO a scraper. How else do they have the meta description to display in the search results? the title? the dates of posts? They're the ultimate crawler AND scraper.