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?