Is there a way to get around the following?

httperror_seek_wrapper: HTTP Error 403: request disallowed by robots.txt

Is the only way around this to contact the site-owner (barnesandnoble.com).. i'm building a site that would bring them more sales, not sure why they would deny access at a certain depth.

I'm using mechanize and BeautifulSoup on Python2.6.

hoping for a work-around

link|improve this question

There are probably legal issues if you plan to monetize, but if you don't, continue as you please. Long live scroogle. – Stefan Kendall May 17 '10 at 0:44
feedback

7 Answers

up vote 7 down vote accepted

You can try lying about your user agent (e.g., by trying to make believe you're a human being and not a robot) if you want to get in possible legal trouble with Barnes & Noble. Why not instead get in touch with their business development department and convince them to authorize you specifically? They're no doubt just trying to avoid getting their site scraped by some classes of robots such as price comparison engines, and if you can convince them that you're not one, sign a contract, etc, they may well be willing to make an exception for you.

A "technical" workaround that just breaks their policies as encoded in robots.txt is a high-legal-risk approach that I would never recommend. BTW, how does their robots.txt read?

link|improve this answer
Their robots.txt only disallows "/reviews/reviews.asp" - is this what you are scraping? – fmark May 17 '10 at 2:43
Thanks Alex, I agree... after reading more about robots.txt, this is the best approach. Cheers... @fmark i'm scraping off the video portion... video.barnesandnoble.com/robots.txt – Diego May 18 '10 at 0:38
3  
robots.txt is not legally binding. (nytimes.com/2005/07/13/technology/…) – markwatson May 2 '11 at 0:54
feedback

oh you need to ignore the robots.txt

br = mechanize.Browser()
br.set_handle_robots(False)
link|improve this answer
That's what I'm looking for. – Adam Matan Mar 23 '11 at 12:11
thanks for upvote – Gunslinger_ Mar 26 '11 at 11:56
feedback

Mechanize automatically follows robots.txt, but it can be disabled assuming you have permission, or you have through the ethics through ..

Set a flag in your browser:

browser.set_handle_equiv(False) 

This ignores robots.txt.

Also, make sure you throttle your requests, so you don't put too much load on their site. (Note, this also makes it less likely that they will detect and ban you).

link|improve this answer
Hey wisty, what do you mean by throttle your requests? – Diego May 18 '10 at 0:39
I mean, set a small timeout after each request (i.e. time.sleep(1)), and don't use many threads. I'd use a few threads (in case some get bogged down), and a few seconds sleep. – wisty May 18 '10 at 1:21
feedback

Set your User-Agent header to match some real IE/FF User-Agent.

Here's my IE8 useragent string:

Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; InfoPath.3; AskTB5.6)
link|improve this answer
nice cheating ;) but it's doesn't work in this case – Gunslinger_ Jul 22 '11 at 17:44
feedback

The error you're receiving is not related to the user agent. mechanize by default checks robots.txt directives automatically when you use it to navigate to a site. Use the .set_handle_robots(false) method of mechanize.browser to disable this behavior.

link|improve this answer
feedback

As it seems, you have to do less work to bypass robots.txt, at least says this article. So you might have to remove some code to ignore the filter.

link|improve this answer
feedback

Without debating the ethics of this you could modify the headers to look like the googlebot for example, or is the googlebot blocked as well?

link|improve this answer
I don't see any ethical problem but the legal ones could get even worse (whoever you're impersonating could detect you and sue the expletive-deleted out of you, not just B&N and your ISP). "Do this illegal thing and just don't get caught" isn't prudent advice, even when no ethical issues pertain (and, I repeat, I don't see anything immoral in breaking these particular laws -- it's just too risky for far too little potential gain;-). – Alex Martelli May 17 '10 at 0:51
A legal issue is an ethical issue in this case do you follow it or not. – Steve Robillard May 17 '10 at 0:53
feedback

Your Answer

 
or
required, but never shown

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