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.

I am working on a url using python.
If I click the url, I am able to get the excel file.
but If I run following code, it gives me weird output.

>>> import urllib2
>>> urllib2.urlopen('http://intranet.stats.gov.my/trade/download.php?id=4&var=2012/2012%20MALAYSIA%27S%20EXPORTS%20BY%20ECONOMIC%20GROUPING.xls').read()

output :

"<script language=javascript>window.location='2012/2012 MALAYSIA\\'S EXPORTS BY ECONOMIC GROUPING.xls'</script>"

why its not able to read content with urllib2?

share|improve this question

3 Answers

The site obviously uses a Javascript redirect to make your browser visit a different URL after you opened the original site. You want to use the direct link:

urllib2.open("http://intranet.stats.gov.my/trade/2012/2012%20MALAYSIA'S%20EXPORTS%20BY%20ECONOMIC%20GROUPING.xls")
share|improve this answer

Take a look using an http listener (or even Google Chrome Developer Tools), there's a redirect using javascript when you get to the page.

You will need to access the initial url, parse the result and fetch again the actual url.

share|improve this answer

@Kai in this question seems to have found an answer to javascript redirects using the module Selenium

from selenium import webdriver

driver = webdriver.Firefox()
link = "http://yourlink.com"
driver.get(link)

#this waits for the new page to load
while(link == driver.current_url):
  time.sleep(1)

redirected_url = driver.current_url
share|improve this answer

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.