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

I have a https url that returns a file. That is, when i type it in a browser a window pops up letting me save a text file.

I want to get that file using python. How do I do that? using the requsts.get() method or the urllib.urlopen() method returns something like:

url = 'https://plus.google.com/u/0/_/socialgraph/lookup/visible/?o=%5Bnull%2Cnull%2C%22113773007153140005105%22%5D&rt=j'

r = requests.get(url)
print r.text

This returns:

[[["er",,"REDIRECT",,"REDIRECT",200]
,["di",14,,,,,[]
,[]
,,,[]
,[]
,[]
]
,["e",3,,,113]
]]

Trying to look at the conten or read the raw data returns an empty string (like this)

print r.raw.read(10)

which is not at all the content of the txt file i get using the browser.

What do i need to do to solve this?

share|improve this question
2  
FYI - If I go to the browser I get exactly what you get for that url, probably you have session data in your browser session that allows you to get the correct data. That's a different problem. You've not actually shown what you expect so it's all guess work. – sotapme Feb 18 at 19:32
that was it. Thanks! – Akkabar Feb 19 at 9:05

closed as not a real question by Wooble, bensiu, Stony, Aleksander Blomskøld, Lipis Feb 19 at 9:50

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

4 Answers

You didn't provide any code. Here is a sample that you can adapt to your needs:

import urllib2
fo = urllib2.urlopen('https://google.com')
print fo.read()

urlopen() returns a file like object. Good luck!

share|improve this answer
Thanks. But I do not need a file-like object. The link I use returns a file anyway (I don't know how), post edited to explain. – Akkabar Feb 18 at 18:57

Have you got the file object in your Python script? If so, you just write its contents to disk, using open.

path = 'save.txt'     # a path to the save file
mode = 'w'            # the mode, in this case write mode
body = 'some stuff'   # the content to be saved

with open(path, mode) as f:
    f.write(body)

Note that calling a file's read method gets you the content of the file: body = somefile.read()

Your problem may have more to do with the fact that you're making HTTPS requests, which are encrypted. Your browser will handle this for you, but you need to make sure your Python script is dealing with that.

share|improve this answer
I thought about that. How would I do that though? – Akkabar Feb 18 at 20:57
I don't know of a simple way, but I'm sure Python can do HTTPS. – Carl Smith Feb 18 at 23:53
I think you may just need to install python-ssl, then use urllib2 as standard. I'm really not sure. – Carl Smith Feb 19 at 0:00

Using urllib2, this will open a connection, download the file, and save it to the indicated path:

inUrl = 'https://google.com'
outFile = '/tmp/goo'
shutil.copyfileobj(urllib2.urlopen(inUrl), open(outFile, "w"))

Here is an example using Python-requests:

import requests
r = requests.get(inUrl)
open(outFile, "wb").write(r.content)
share|improve this answer
Interesting approach. Unusual, but clean and to the point. – Carl Smith Feb 18 at 19:21

Ok, the problem was indeed that I needed to authenticate myself for the google URL. My browser was logged in, and so it worked there but not in python.

Thanks all.

share|improve this answer

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