Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
curl -L http://tumblr.com/tagged/long-reads

This is the result: http://pastebin.com/XtQVubBp

That response is different from

def download(url):
    f = urllib2.urlopen(url)
    return f.read()
html = download('http://tumblr.com/tagged/long-reads')
print html

This is the result of 2nd one: http://pastebin.com/MdzrhBZv

Why? I want download() to return the same thing curl does. What should I do?

Here's the CURL request headers.

$ curl -v -L http://tumblr.com/tagged/long-reads
* About to connect() to tumblr.com port 80 (#0)
*   Trying 50.97.149.179... connected
* Connected to tumblr.com (50.97.149.179) port 80 (#0)
> GET /tagged/long-reads HTTP/1.1
> User-Agent: curl/7.21.6 (i686-pc-linux-gnu) libcurl/7.21.6 OpenSSL/1.0.0e zlib/1.2.3.4 libidn/1.22 librtmp/2.3
> Host: tumblr.com
> Accept: */*
> 
< HTTP/1.1 301 Moved Permanently
< Cache-Control: no-cache
< Content-length: 0
< Location: http://www.tumblr.com/tagged/long-reads
< Connection: close
< 
* Closing connection #0
* Issue another request to this URL: 'http://www.tumblr.com/tagged/long-reads'
* About to connect() to www.tumblr.com port 80 (#0)
*   Trying 50.97.143.18... connected
* Connected to www.tumblr.com (50.97.143.18) port 80 (#0)
> GET /tagged/long-reads HTTP/1.1
> User-Agent: curl/7.21.6 (i686-pc-linux-gnu) libcurl/7.21.6 OpenSSL/1.0.0e zlib/1.2.3.4 libidn/1.22 librtmp/2.3
> Host: www.tumblr.com
> Accept: */*
> 
< HTTP/1.1 200 OK
< Date: Mon, 07 May 2012 22:09:01 GMT
< Server: Apache
< P3P: CP="ALL ADM DEV PSAi COM OUR OTRo STP IND ONL"
< Set-Cookie: tmgioct=iVajmrL8Wj8YffLTthjFyqYn; expires=Thu, 05-May-2022 22:09:01 GMT; path=/; httponly
< Vary: Accept-Encoding
< X-Tumblr-Usec: D=266934
< Connection: close
< Transfer-Encoding: chunked
< Content-Type: text/html; charset=UTF-8
< 

EDIT: I WILL OFFER a 500 BOUNTY TO WHOEVER SOLVES MY PROBLEM RIGHT NOW.

share|improve this question
Read the docs on both closely. My experience with curl/urllib2 has been that curl does lots of best guess magic with headers and such that urllib2 doesn't do. Especially around things like content-type and the actual HTTP methd (GET/PUT/etc). – sr2222 May 7 '12 at 21:46
1  
What is the difference? – dbf May 7 '12 at 21:47
How can I make download() return the same thing curl does? – TIMEX May 7 '12 at 21:48
I think what he's getting at is that you haven't actually told us what the difference is. – sr2222 May 7 '12 at 21:53
I pasted the difference. – TIMEX May 7 '12 at 21:56
show 12 more comments

1 Answer

It's difficult to know exactly how to make them look the same; you'd have to know which headers curl is using and reproduce them in urllib2. But once you know the headers curl uses, it should be as simple as setting those headers in a Request object:

>>> moz_req = urllib2.Request('http://www.google.com', headers={'User-Agent': 'Mozilla/5.0 (X11; U; Linux i686) Gecko/20071127 Firefox/2.0.0.11'})
>>> pyt_req = urllib2.Request('http://www.google.com', headers={'User-Agent': 'Python-urllib/2.6'})
>>> moz_url = urllib2.urlopen(moz_req)                                          
>>> moz_str = moz_url.read()
>>> moz_url.close()
>>> pyt_url = urllib2.urlopen(pyt_req)
>>> pyt_str = pyt_url.read()
>>> pyt_url.close()
>>> moz_str == pyt_str
False

When I do the following, I get a page full of blog posts.

import urllib2

def download(url):
    headers = {'User-Agent': 'Mozilla/5.0 (X11; U; Linux i686) Gecko/20071127 Firefox/2.0.0.11'}
    req = urllib2.Request(url, headers=headers)
    url = urllib2.urlopen(req)
    page = url.read()
    url.close()
    return page

html = download('http://tumblr.com/tagged/long-reads')
page = open('page.html', 'w')
page.write(html)
page.close()

But then, I checked, and I get the same result even without setting headers. Something else is wrong...

share|improve this answer
I'd +1 you again if I could. :) – sr2222 May 7 '12 at 22:38
@senderle I used your code, but I still did not get blog posts. Weird. I'm on EC2. Could the IP be blocked? But why would cURL work from that same machine if the IP is blocked? – TIMEX May 7 '12 at 22:44
Shot in the dark, but could your python interpreter be running under a different user (with different perms and restrictions), than your CLI user? – sr2222 May 7 '12 at 22:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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