up vote 21 down vote favorite
10
share [g+] share [fb]

How does the fair use doctrine apply to websites in terms of screen-scraping?

The particular example I am thinking of is extraction of the useful data from a website, and re-presentation of the raw data aggregated with data from other similar websites. For example, suppose one was to extract data from a variety of websites to produce a database of structured data in a similar manner to DBpedia, could this be considered fair-use. If not, where does the boundary lie?

Obviously, this differs by jurisdiction, but then so the websites being scraped as well as the location of the scraper. Similarly, ethics may well differ from legalities.


Okay, so in many cases it may well be illegal, but as a content-provider how can it actually be prevented? I've posted a follow-up question on Protection from screen scraping

link|improve this question

80% accept rate
Dupe of stackoverflow.com/questions/393461/scraping-the-law ...wait... it doesn't exist anymore... never mind. ;-) – Kyle Cronin Dec 28 '08 at 22:44
Oh, that's annoying. So why did that one dissapear? – Mat Dec 28 '08 at 22:50
2  
@Mat: Probably because some high and mighty "moderator" decided it wasn't programming related and shot it down with prejudice. – Software Monkey Dec 29 '08 at 0:17
There are 3 ways a question can be deleted. First, the asker can delete it themselves. Second, it could have been removed if 5 people flagged it as offensive. Third, a site founder could have deleted it. I don't have enough information to identify which in this case. – Kyle Cronin Dec 29 '08 at 0:35
feedback

5 Answers

up vote 9 down vote accepted

The problem with what you describe is that different sites have different rules regarding their copyright. If you scrape copyrighted information you can find yourself in hot water very quickly.

As I understand it, the US fair use rules allow for limited use of copyrighted information without the copyright owner's permission. The key word here is "limited". Wholesale scraping and republishing of content is almost definitely against the law in the US and certainly in other countries. Taking a quotation or two and including it within a much larger work of your own origin is more acceptable.

It is also important that you do not use the material in a commercial way. So taking other people's content and putting it alongside advertising is probably not permitted.

The biggest problem I have with these types of "fair use" is that they often take away the value of the original work (I believe this is also taken into consideration in fair-use law). I am not suggesting that this is your goal but when people start distributing other people's work, the limited advertising revenue they may receive disappears and means that it is potentially no longer viable to write the content in the first place.

  • I use the word probably a lot here because I am not a lawyer - don't take my opinion as legal advice.
link|improve this answer
feedback

As a rule of thumb, at the point where you take someone else's content, and commercially exploit that content to the detriment or exclusion of their page impressions/sales/ad revenue/bottom line, people are going to get annoyed.

link|improve this answer
feedback

It depends on the terms of service of the site being scraped. Some sites, like Google and Amazon, expressly forbid what you're describing. Instead they provide an API for you to use, which you have to sign up for. Most sites frown on the type of behavior that you're describing because you take their content without displaying their ads.

link|improve this answer
feedback

Lawyers will always be conservative here, and most of the comments I've seen on this thread are more "how I think it should be" rather then actual good advice regarding screen scraping and the legality of it. You should read about the actual court decisions that have been made regarding screen scraping. Even after you read the decisions, you will see that most rulings are very specific to the case, and that you shouldn't asses your own projects legality without doing the proper research. For instance, if you are starting a commercial business based on screen scraping, and think the intel court case is supportive of SS, you should look more into the case (one of the main reasons the judge ruled against Intel was because of the non-profit nature of the SS).

Please read the below, and similar articles and rulings to be sure. Then go get some legal protection.

http://www2.law.mercer.edu/lawreview/files/55307.pdf

link|improve this answer
feedback

Ahnn... Google?

link|improve this answer
Indexing for search and providing links to drive traffic to sites is quite a bit different than re-presenting content scraped from a site. – Bill the Lizard Dec 28 '08 at 22:38
1  
Fair enough. However we don't quite know what "else" Google does with the data... – a'b'c'd'e'f'g'h' Dec 28 '08 at 22:44
Doesn't matter as long as it does it privately – Vinko Vrsalovic Dec 28 '08 at 22:47
2  
Interesting point. I wonder if is that the same as someone downloading sw, mp3, etc for private use? – a'b'c'd'e'f'g'h' Dec 28 '08 at 22:49
Although I don't believe the OP meant it, the google point is interesting because a couple of suicidally trollish companies are certainly taking the view that google is stealing their content, the reality that their traffic would be decimated without google notwithstanding – annakata Dec 28 '08 at 22:50
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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