Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know the topic of web scraping has been discussed before (example), and I understand it's a bit of a grey area depending on a lot of factors (e.g. website's terms of use).

What I'd like to ask is: how is web scraping any different from (a) how we access the webpage via a web browser, and (b) how web crawlers (e.g. Google) download and index webpages?

Without knowing the legal background, I can't help but think that they're all just HTTP requests. If web scraping is illegal, then so should crawling and indexing (for instance be illegal).

Of course if your program is hitting the server so hard that it causes a denial of service, it's a different story altogether... my point is simply accessing and using data that is already open to the public.

share|improve this question
1  
voting to move to programmers – Tom Squires Feb 6 at 18:05
Each website has its own policy on what constitutes legal access of the site. – Juan Mendes Feb 6 at 18:06
That's not the point. If you can consume it with your eyes, or with a crawler, why is it wrong to parse it? – Gigi Feb 6 at 18:09
@Gigi Because your parser ignores ads. – Filburt Feb 6 at 18:14
Good point, but that makes popup blocking illegal too. – Gigi Feb 6 at 18:25

2 Answers

I think it only becomes illegal, if it is a copyright violation.

Even the normal use with Firefox would be illegal, if you open the pages, write the text manually down and then put it on your own website. Which is what most scrapers do.

On the other hand, if your scraper behaves like a webbrowser, i.e. only after a user inputs a request, for a site, the scraper downloads/scrapes the site in question and and then only shows the data of that site; it should be legal. After all it is just a proxy.

Of course it becomes complicated, if the showed data is heavily modified/filtered after that one request. Then it probably depends, on if your scraper is considered to create some kind of "derived work" or just views its. And on who has the better lawyers. After all it is not doing anything, Greasemonkey/User CSS/ADP aren't doing...

I'm not a lawyer through

share|improve this answer

You said: "accessing and using data that is already open to the public." True, big guys like Google, Yahoo, Bing have crawled and indexed the web without asking website owners. Now they win, while small potatoes always loose. I think if you do non-choking data scrape to become next Google you are all right.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.