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?
|
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.
|
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 ...
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. |
|||||||||||||||||
|
|
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. |
|||
|
|
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 |
|||||
|
|
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. |
|||
|
|
