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

I started on a side project where I will need to scrape data from a public web site that I am not affiliated with. I already have the technology in place to scrape the data from the HTML, and my code is ready to run, but I don't want my automated requests to be perceived as a Denial Of Service (DOS). I was thinking of introducing a wait interval between each request, (average response from the site is in sub-second time) but the only idea I could come up with is to time myself going to the page, and saving the data, then double that time and use it as a wait interval. Has anyone been in a similar situation on the retrieving or receiving side of the equation? Can anyone offer any other guidance?

share|improve this question
I don't see the relevance of three out of four of this question's tags. – Stephen C Dec 8 '10 at 15:52
@Stephen I'm assuming you are referring to the 'java' and 'selenium' tags. I added those to my original post as they are the technologies that I'm considering using. – bakoyaro Dec 8 '10 at 20:30
Would you expect the law / ethics of web scraping to be different if you were using C# or nutch to implement your scraper? If not, so how are the tags relevant to the question? – Stephen C Dec 8 '10 at 21:26
@Stephen Point well taken. Unfortunately I don't have the rep yet to re-tag questions <cough, cough>, for some reason people that view my questions don't like to vote them up <cough, cough> :-) – bakoyaro Dec 8 '10 at 21:52

closed as off topic by maple_shaft, Robert Harvey Apr 30 '12 at 18:49

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

4 Answers

up vote 4 down vote accepted

If you want to be legal, read the site's Terms of Service page, and don't do anything that violates the terms.

If you want to be ethical, do the above ... AND ...

  • make sure that your crawler follows obeys their robots.txt rules, and any rules embedded in <meta> tags,
  • think about whether what you are going to do is competing unfairly with them, and
  • think about whether what you are going to do is likely to use a significant amount of their resources without a fair return to them*.

If you have any lingering concerns, contact them, explain what you are proposing to do, ask their permission, and pay attention to any limitations they may want to impose.

* For instance, many sites get their revenue from real users clicking adverts on their pages. Your crawler won't be generating any clicks, so there won't be any return to them for the cost of serving pages to you.

FOLLOWUP

A lot of people follow the old stratagem that it is easier to ask for forgiveness than to ask for permission. Other people don't bother to search out and read the site's Terms of Service.

Depending on who you are, what you are scraping, and whose site you are scraping from, you may well get away with this. However, these approaches are neither strictly legal or (IMO) ethical. If someone sues you, "I didn't know it was illegal" or "I didn't bother to read the ToS" are not an affirmative defences.

share|improve this answer
1  
This is what I do. I wrote a simple website to scrape EMS call data from the provider's website. It's only incidentally online, as they make their money by renting out the hardware and charging for call-ins to their dispatch number, where they play the recording. They only keep it for a day or two, so I download the 20kb or so of MP3 and keep the metadata in a DB. It checks every 10 minutes for new info, or whenever somebody specifically requests an update, only downloading new files... This has been going on for a year - with contact info in the headers I send - and no complaints. – Robert Dec 8 '10 at 7:15
2  
@Robert - the fact that they haven't complained means one of two things. Either they are OK with you doing this (or don't care enough to make an issue of it), or they haven't noticed yet. It would be unwise to generalize from your experiences. – Stephen C Dec 8 '10 at 9:44
@Stephen Those are two of the situations that I want to avoid! Luckily this project will not be a sustained crawl, and they do not serve ads on any of their pages. I checked out their terms of service, and they don't list anything that says anything along the lines of "If you send this many requests in per second, we will come after you..", but I do appreciate the sage advice of seeing what they think first in terms of published limits and access to their data. – bakoyaro Dec 8 '10 at 15:22
1  
@Stephen - I agree that my example shouldn't be generalized (IMO each case is specific) but I fail to see how I'm acting illegally or unethically. Their TOS says nothing about scraping, their robots.txt encourages indexing and crawling, I'm adding value to their service that they're uninterested in providing, and consuming peanuts. Without the backlog that the scraping provides, we wouldn't be using the service (which we pay about $300/mo for). If you think this is potentially illegal or otherwise unethical, I'd like to know ASAP. – Robert Dec 8 '10 at 18:00
@Robert - ah ... so you did actually read the ToS. To me, your comment implied that you went ahead and implemented your scraper in ignorance of the ToS. You also didn't mention that you were a paying customer ... not that that would make it legal / ethical if the ToS said that you couldn't do it. – Stephen C Dec 8 '10 at 21:33
show 3 more comments

Well, depends on the site. If the site would be losing money due to your actions, don't expect them to be awfully sympathetic. If you'd like access to their data, you may just email them - they may even offer you access to some feed if they're sympathetic enough.

Otherwise, as a general ethical principle, they put it on the web. Run as frequently as you need, but no more - and consider how hard their servers would be hit (massive generation with a lot of db hits, or mostly-static html).

I have a site that updates every 10 minutes from my data provider, or more frequently if somebody requests. There's usually only a few new files per day, so every 10 minutes is a good balance between "reasonably up to date information" and "not killing their servers".

Basically, you're under no obligation to help them out - but if you piss them off, they'll block you and you'll be stuck. Anything you did to get around a block would be unethical, so avoid that.

share|improve this answer
Thanks for your advice, it's always a thin thread between what is right in theory, and what is right in practice. I think that you have helped me see where the balance can be made. – bakoyaro Dec 8 '10 at 20:28

What you are building is a standard web crawler I suggest you go by the rules defined by each site for web crawlers. Check for a robots.txt file http://www.robotstxt.org/

Same tech most search engines use (yahoo, google ...)

Here are some short but good guidelines http://www.cs.washington.edu/lab/policies/draft/crawlers.html

As far as only requesting the data if it has changed you want to check the http headers. Do a conditional get on the URL with a check on the If-Modified-Since HTTP header and check for a 304 (not modified) response from your target server OR just request the headers for the content. If (note the IF) the script generates the correct content headers you can simply check the Content-Age or Content-MD5 header and get the rest of the data if needed.

Check this out. Optimizing HTTP downloads in Java through conditional GET and compressed streams http://oreilly.com/pub/wlg/5216

share|improve this answer
Great links, thanks for your input. I totally forgot about robots.txt, I'm glad that I asked here first. – bakoyaro Dec 8 '10 at 15:16
A key distinction to be made here is that search engines are not redistributing the content, they are selling data derived from it and then linking to the source of the information. Whether bakoyaro's application both legal and ethical has a lot more to do with what the data are actually used for and whether it is stored. – T.Rob Jan 30 '11 at 19:53

The short answer here is that any data published on the web is automatically granted copyright in US, EU and most other places. Unless you see a license explicitly granting you the right to reuse the data, you are VERY limited in what you can do with it. Crawling the site is not illegal but your storage or use of the data may easily be.

For example, search engines provide metadata. Their argument is that they don't re-host the data but rather make is searchable and then provide links to where the reader can view it on the original site. In doing so, they have to display a little bit of the original content for the user to know whether it is relevant. Search engines argue that this is fair use, as defined in the law, and even that small use is constantly challenged in courts.

To be both legal and ethical, look for Creative Commons or other licensing that explains terms of your reuse. Or simply ask the site owner for their permission. Short of these options the only possible interpretation of doing this legally and ethically is that you never provide the information you scrape to your users but rather supply information about the 3rd party site based on your analysis.

share|improve this answer

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