vote up 8 vote down star
2

I try to fetch a Wikipedia article with Phython's urllib:

f = urllib.urlopen("http://en.wikipedia.org/w/index.php?title=Albert_Einstein&printable=yes")           
s = f.read()
f.close()

However instead of the html page I get the following response: Error - Wikimedia Foundation:

Request: GET http://en.wikipedia.org/w/index.php?title=Albert_Einstein&printable=yes, from 192.35.17.11 via knsq1.knams.wikimedia.org (squid/2.6.STABLE21) to () Error: ERR_ACCESS_DENIED, errno [No Error] at Tue, 23 Sep 2008 09:09:08 GMT

Wikipedia seems to block request which are not from a standard browser.

Anybody know how to work around this?

flag

40% accept rate

6 Answers

vote up 9 vote down check

You need to use the urllib2 that superseedes urllib in the python std library in order to change the user agent.

Straight from the examples

import urllib2
opener = urllib2.build_opener()
opener.addheaders = [('User-agent', 'Mozilla/5.0')]
infile = opener.open('http://en.wikipedia.org/w/index.php?title=Albert_Einstein&printable=yes')
page = infile.read()
link|flag
Gurch, Teifion, holding a grudge because you get downvoted for bad answers that are wrong or stupid and therefore downvoting the one entirely correct answer + solution to the question is extremely counter productive, consider yourselves reported. – Florian Bösch Sep 23 '08 at 10:02
Why'd I hold a grudge for being downvoted? The voting is for the community to decide what they feel the best answer is, I am still just as free to use whichever method I want. -2 Reputation is not a big enough thing to get angry over in my opinion. – Teifion Sep 23 '08 at 10:08
It's not about the number of downvotes, it's that you should downvote things that are QFT stackoverflow.com/faq: "Above all, be honest. If you see misinformation, vote it down." – Florian Bösch Sep 23 '08 at 10:14
since I know my answer contains no misinformation, there's no legitimate reason to vote it down, and I'm assuming the same insight from others. Therefore I assume mallice, that's what gets me riled up. – Florian Bösch Sep 23 '08 at 10:15
1  
Florian, saying that misinformation should be voted down is not the same thing as saying that misinformation is the only thing that should be voted down. Stop being so self-righteous. You aren't perfect. Your answer is fragile and inflexible compared with kigurai's. – Jim Sep 23 '08 at 11:10
vote up 9 vote down

It is not a solution to the specific problem. But it might be intersting for you to use the mwclient library (http://botwiki.sno.cc/wiki/Python:Mwclient) instead. That would be so much easier. Especially since you will directly get the article contents which removes the need for you to parse the html.

I have used it myself for two projects, and it works very well.

link|flag
Using third party libraries for what can easily be done with buildin libraries in a couple lines of code isn't good advice. – Florian Bösch Sep 23 '08 at 10:18
Since mwclient uses the mediawiki api it will require no parsing of the content. And I am guessing the original poster wants the content, and not the raw html with menus and all. – kigurai Sep 23 '08 at 10:52
vote up 2 vote down

Try changing the user agent header you are sending in your request to something like: User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.9.0.1) Gecko/2008072820 Ubuntu/8.04 (hardy) Firefox/3.0.1 (Linux Mint)

link|flag
vote up 2 vote down

The general solution I use for any site is to access the page using Firefox and, using an extension such as Firebug, record all details of the HTTP request including any cookies.

In your program (in this case in Python) you should try to send a HTTP request as similar as necessary to the one that worked from Firefox. This often includes setting the User-Agent, Referer and Cookie fields, but there may be others.

link|flag
vote up 0 vote down

You don't need to impersonate a browser user-agent; any user-agent at all will work, just not a blank one.

link|flag
urllib and urllib2 both send a user agent – Teifion Sep 23 '08 at 9:58
vote up 0 vote down

Rather than trying to trick Wikipedia, you should consider using their High-Level API.

link|flag

Your Answer

Get an OpenID
or

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